:root {
  --black: #080808;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f5f5f2;
  --muted: #727272;
  --line: #d8d8d4;
  --line-dark: rgba(255,255,255,.18);
  --max: 1320px;
  --header: 82px;
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; word-break: keep-all; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3 { letter-spacing: -.045em; line-height: 1.12; }
.container { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 9999; top: -50px; left: 20px; padding: 12px 16px; background: #fff; color: #000; }
.skip-link:focus { top: 20px; }
.section { padding: 126px 0; }
.section--paper { background: var(--paper); }
.section--black { color: #fff; background: var(--black); }
.section-kicker { margin-bottom: 22px; font: 800 12px/1 Montserrat, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.section-kicker--light { color: rgba(255,255,255,.62); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 68px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(38px, 4.2vw, 64px); }
.section-heading p { margin-bottom: 5px; color: var(--muted); font-size: 17px; }
.section--black .section-heading p { color: rgba(255,255,255,.62); }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--ink); border-radius: 999px; font-weight: 750; transition: .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--dark { color: #fff; background: var(--ink); }
.button--light { color: #000; background: #fff; border-color: #fff; }
.button--ghost-light { color: #fff; border-color: rgba(255,255,255,.6); }
.text-link { font-weight: 750; text-decoration: underline; text-underline-offset: 5px; }
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Header */
.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header); color: #fff; background: var(--black); transition: background .3s ease, color .3s ease; }
.site-header--overlay { position: fixed; width: 100%; background: linear-gradient(180deg,rgba(0,0,0,.7),transparent); }
.site-header--overlay.is-scrolled { background: var(--black); }
.site-header__inner { width: min(calc(100% - 64px), var(--max)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.site-logo img { width: 210px; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: stretch; height: 100%; gap: 42px; }
.site-nav__item { position: relative; display: flex; align-items: center; }
.site-nav__link { position: relative; display: flex; height: 100%; align-items: center; font-size: 14px; font-weight: 700; }
.site-nav__link::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 1px; background: #fff; transform: scaleX(0); transition: transform .25s ease; }
.site-nav__item:hover .site-nav__link::after, .site-nav__item.is-active .site-nav__link::after { transform: scaleX(1); }
.site-nav__dropdown { position: absolute; top: calc(100% - 1px); left: 50%; width: 210px; padding: 16px; background: #fff; color: #111; box-shadow: 0 18px 50px rgba(0,0,0,.18); transform: translate(-50%,-8px); opacity: 0; visibility: hidden; transition: .2s ease; }
.site-nav__dropdown a { display: block; padding: 12px 10px; font-size: 14px; font-weight: 650; }
.site-nav__dropdown a:hover { background: #f1f1ef; }
.site-nav__item:hover .site-nav__dropdown, .site-nav__item:focus-within .site-nav__dropdown { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.site-nav__item:last-child .site-nav__dropdown { right: 0; left: auto; transform: translateY(-8px); }
.site-nav__item:last-child:hover .site-nav__dropdown,
.site-nav__item:last-child:focus-within .site-nav__dropdown { transform: translateY(0); }
.menu-toggle, .mobile-menu { display: none; }

/* Home hero */
.home-hero { position: relative; min-height: 100svh; overflow: hidden; color: #fff; background: #000; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: -4%; opacity: 0; animation: heroCrossfade 18s infinite; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); animation: heroZoom 18s infinite linear; }
.hero-slide:nth-child(2) img { filter: grayscale(.25) brightness(.75); }
.hero-slide:nth-child(3) img { filter: grayscale(.1) brightness(.68); }
@keyframes heroCrossfade { 0%,28% { opacity: 1; } 34%,94% { opacity: 0; } 100% { opacity: 1; } }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.18) 65%,rgba(0,0,0,.38)); }
.home-hero__content { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: var(--header); }
.home-hero h1 { max-width: 1000px; margin: 0; color: #fff; font-size: clamp(46px,6.2vw,96px); font-weight: 720; }
.home-hero__subtitle { max-width: 720px; margin: 28px auto 0; color: rgba(255,255,255,.72); font-size: clamp(15px,1.35vw,19px); line-height: 1.75; word-break: keep-all; }
.home-hero__scroll { position: absolute; bottom: 34px; left: 50%; z-index: 3; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transform: translateX(-50%); font-size: 21px; }

/* Strengths */
.strength-shell { padding: 110px 0; background: #000; color: #fff; }
.strength-title { max-width: 760px; margin-bottom: 58px; font-size: clamp(35px,4vw,58px); }
.strength-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.strength-card { position: relative; min-height: 265px; padding: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: linear-gradient(145deg,#323232,#0d0d0d 58%); }
.strength-card:nth-child(4), .strength-card:nth-child(5) { grid-column: span 1; }
.strength-card::before { content: ""; position: absolute; width: 130px; height: 130px; right: -45px; bottom: -45px; border-radius: 32px; background: linear-gradient(145deg,rgba(255,255,255,.3),rgba(255,255,255,.02)); transform: rotate(20deg); }
.strength-card small { display: block; color: rgba(255,255,255,.55); font: 750 11px Montserrat,sans-serif; letter-spacing: .12em; }
.strength-card h3 { max-width: 260px; margin: 92px 0 10px; font-size: 25px; }
.strength-card p { max-width: 300px; margin-bottom: 0; color: rgba(255,255,255,.6); font-size: 14px; }

/* Brand rows */
.brand-rows { border-top: 1px solid var(--line); }
.brand-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--line); }
.brand-row:nth-child(even) .brand-row__copy { order: 2; }
.brand-row:nth-child(even) .brand-row__visual { order: 1; }
.brand-row__logo { max-width: 220px; max-height: 74px; margin-bottom: 44px; object-fit: contain; object-position: left center; }
.brand-row__copy h3 { margin-bottom: 22px; font-size: clamp(34px,3.8vw,56px); }
.brand-row__copy p { max-width: 560px; color: #5d5d5d; font-size: 17px; }
.brand-row__visual { overflow: hidden; border-radius: 18px; background: #eee; }
.brand-row__visual img { width: 100%; aspect-ratio: 4/2.75; object-fit: cover; transition: transform .6s ease; }
.brand-row:hover .brand-row__visual img { transform: scale(1.025); }

/* Growth */
.growth-panel { background: #050505; color: #fff; }
.growth-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 70px; align-items: center; min-height: 720px; }
.growth-copy h2 { font-size: clamp(38px,4.2vw,64px); }
.growth-copy > p { color: rgba(255,255,255,.6); }
.growth-facts { margin-top: 55px; border-top: 1px solid var(--line-dark); }
.growth-fact { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line-dark); }
.growth-fact span { color: rgba(255,255,255,.62); }
.growth-fact strong { font: 750 27px Montserrat,sans-serif; }
.growth-story { align-self: center; padding: clamp(34px,5vw,64px); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025)); }
.growth-story ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.growth-story li { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.growth-story li:first-child { padding-top: 8px; }
.growth-story li:last-child { padding-bottom: 8px; border-bottom: 0; }
.growth-story li > span { color: rgba(255,255,255,.44); font: 700 12px Montserrat,sans-serif; letter-spacing: .08em; }
.growth-story strong { display: block; margin-bottom: 8px; color: #fff; font-size: 22px; }
.growth-story li p { margin: 0; color: rgba(255,255,255,.58); }
.line-chart { position: relative; min-height: 510px; border-left: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px); background-size: 100% 20%; }
.line-chart svg { position: absolute; inset: 22px 15px 18px; width: calc(100% - 30px); height: calc(100% - 40px); overflow: visible; }
.line-chart path { fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 2.2s ease; }
.line-chart.is-visible path { stroke-dashoffset: 0; }
.line-chart circle { fill: #050505; stroke: #fff; stroke-width: 2; }
.chart-label { position: absolute; font: 700 11px Montserrat,sans-serif; color: rgba(255,255,255,.56); }
.chart-label--1 { left: 0; bottom: -31px; }.chart-label--2 { left: 23%; bottom: -31px; }.chart-label--3 { left: 47%; bottom: -31px; }.chart-label--4 { left: 71%; bottom: -31px; }.chart-label--5 { right: 0; bottom: -31px; }
.chart-number { position: absolute; right: 2%; top: 4%; font: 700 50px Montserrat,sans-serif; }
.chart-note { margin-top: 54px; color: rgba(255,255,255,.42); font-size: 12px; }

/* Values */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { position: relative; min-height: 360px; overflow: hidden; border-radius: 18px; color: #fff; background: #111; }
.value-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.7) brightness(.45); transition: transform .5s ease; }
.value-card:hover > img { transform: scale(1.03); }
.value-card__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(0deg,rgba(0,0,0,.9),transparent 68%); }
.value-card h3 { max-width: 270px; margin: 0; font-size: 25px; }
.value-card__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; }
.accordion-button { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 25px; transition: .25s ease; }
.value-card.is-open .accordion-button { color: #000; background: #fff; transform: rotate(45deg); }
.accordion-panel { margin-top: 20px; color: rgba(255,255,255,.72); font-size: 14px; }

/* Benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-item { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 46px; border: 1px solid var(--ink); border-radius: 50%; font: 700 15px Montserrat,sans-serif; }
.benefit-item h3 { margin-bottom: 10px; font-size: 20px; }
.benefit-item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

/* Inner hero */
.page-hero { position: relative; min-height: 650px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: #000; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.5); }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.12)); }
.page-hero__content { position: relative; z-index: 2; padding: 100px 0 78px; }
.page-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(44px,5.6vw,80px); }
.page-hero p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 18px; }
.page-title { padding: 150px 0 70px; background: #000; color: #fff; }
.page-title h1 { margin: 0; font-size: clamp(48px,6vw,84px); }
.page-title p { max-width: 700px; margin: 25px 0 0; color: rgba(255,255,255,.62); font-size: 18px; }

/* Company */
.story-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.story-split__visual { overflow: hidden; border-radius: 18px; }
.story-split__visual img { width: 100%; min-height: 550px; object-fit: cover; }
.story-split__copy h2 { font-size: clamp(38px,4.2vw,62px); }
.story-split__copy p { color: #5d5d5d; font-size: 18px; }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.statement { min-height: 390px; padding: 50px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement small { font: 800 12px Montserrat,sans-serif; letter-spacing: .14em; }
.statement h3 { margin-top: 100px; font-size: clamp(30px,3vw,45px); }
.history-list { border-top: 1px solid var(--line); }
.history-row { display: grid; grid-template-columns: 180px 1fr; gap: 50px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.history-row strong { font: 750 30px Montserrat,sans-serif; }
.history-row p { margin: 3px 0 0; color: #555; }
.certificate-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.certificate-strip img { width: 100%; border: 1px solid var(--line); }
.certificate-list { border-top: 1px solid var(--line); }
.certificate-list div { padding: 18px 0; border-bottom: 1px solid var(--line); font-weight: 650; }

/* Team */
.principle-list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 150px 1fr auto; gap: 36px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principle small { color: #777; font: 700 12px Montserrat,sans-serif; }
.principle h3 { margin: 0; font-size: 25px; }
.principle p { margin: 9px 0 0; color: #666; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.team-card { min-height: 310px; padding: 32px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: .25s ease; }
.team-card:hover { transform: translateY(-4px); background: #f7f7f5; }
.team-card small { color: #777; font: 750 11px Montserrat,sans-serif; letter-spacing: .12em; }
.team-card h3 { margin-top: 75px; font-size: 27px; }
.team-card p { color: #666; }
.people-banner { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 20px; background: #000; color: #fff; }
.people-banner img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; filter: grayscale(.4); }
.people-banner__copy { padding: 70px; display: flex; flex-direction: column; justify-content: center; }
.people-banner h2 { font-size: clamp(36px,4vw,58px); }
.people-banner p { color: rgba(255,255,255,.66); }

/* News / stories */
.news-list { border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 140px 1fr 46px; gap: 36px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }
.news-row time { color: #777; font: 700 12px Montserrat,sans-serif; }
.news-row h3 { margin-bottom: 7px; font-size: 24px; }
.news-row p { margin: 0; color: #777; }
.news-row__arrow { font-size: 25px; }
.story-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.story-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.story-card__visual { overflow: hidden; }
.story-card__visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.story-card:hover .story-card__visual img { transform: scale(1.025); }
.story-card__body { padding: 28px; }
.story-card small { color: #777; font: 750 11px Montserrat,sans-serif; letter-spacing: .1em; }
.story-card h3 { margin: 21px 0 17px; font-size: 25px; }
.story-card p { color: #666; }

/* Careers */
.career-hero { min-height: 700px; display: flex; align-items: center; background: #000; color: #fff; }
.career-hero__inner { padding: calc(var(--header) + 80px) 0 90px; }
.career-hero h1 { max-width: 970px; font-size: clamp(46px,6vw,88px); }
.career-hero p { max-width: 730px; color: rgba(255,255,255,.66); font-size: 18px; }
.career-hero__actions { display: flex; gap: 12px; margin-top: 42px; }
.coffee-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; }
.coffee-layout h2 { font-size: clamp(36px,4vw,58px); }
.coffee-layout p { color: #666; }
.coffee-details { border-top: 1px solid var(--line); }
.coffee-details div { padding: 21px 0; border-bottom: 1px solid var(--line); }
.coffee-details strong { display: block; margin-bottom: 5px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step { min-height: 230px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step small { font: 800 11px Montserrat,sans-serif; }
.process-step h3 { margin-top: 80px; font-size: 24px; }
.job-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-chip { padding: 10px 18px; border: 1px solid #bbb; border-radius: 999px; background: #fff; cursor: pointer; font-weight: 700; }
.filter-chip.is-active { color: #fff; background: #000; border-color: #000; }
.job-list { border-top: 1px solid var(--line); }
.job-row { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }
.job-row__main { padding: 31px 0; }
.job-row__main small { color: #777; font: 750 11px Montserrat,sans-serif; }
.job-row h3 { margin: 10px 0 13px; font-size: clamp(25px,3vw,38px); }
.job-row__meta { display: flex; flex-wrap: wrap; gap: 10px 20px; color: #777; font-size: 13px; }
.job-row__arrow { padding: 30px; font-size: 29px; }

/* Job detail */
.job-detail-hero { padding: 155px 0 88px; background: #000; color: #fff; }
.back-link { display: inline-block; margin-bottom: 55px; color: rgba(255,255,255,.6); }
.job-detail-hero h1 { max-width: 1000px; font-size: clamp(43px,5.5vw,76px); }
.job-detail-hero__intro { max-width: 760px; color: rgba(255,255,255,.65); font-size: 18px; }
.job-detail-hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.job-detail-hero__meta span { padding: 9px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; font-size: 13px; }
.job-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start; }
.job-copy { padding-bottom: 50px; margin-bottom: 50px; border-bottom: 1px solid var(--line); }
.job-copy h2 { font-size: 31px; }
.job-copy li { margin: 10px 0; }
.apply-card { position: sticky; top: 110px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; }
.apply-card .button { width: 100%; margin-top: 10px; }
.apply-card small { display: block; margin-top: 15px; color: #777; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item .accordion-button { width: 100%; height: auto; display: flex; justify-content: space-between; padding: 25px 0; border: 0; border-radius: 0; color: #111; background: transparent; text-align: left; font-size: 21px; }
.faq-item .accordion-button::after { content: "+"; font-size: 27px; }
.faq-item.is-open .accordion-button::after { content: "−"; }
.faq-item .accordion-panel { padding: 0 0 26px; color: #666; }

/* Coffee form */
.form-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.form-note h2 { font-size: clamp(36px,4vw,58px); }
.form-note p { color: #666; }
.form-card { padding: 40px; background: var(--paper); border-radius: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1/-1; }
.form-field label { font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 14px; border: 1px solid #cacac6; background: #fff; }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-consent, .form-status { grid-column: 1/-1; }
.form-consent { display: flex; gap: 8px; align-items: flex-start; color: #666; font-size: 13px; }
.form-status { min-height: 22px; font-weight: 700; }

/* Career CTA + footer */
.career-cta { position: relative; min-height: 590px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.career-cta__media { position: absolute; inset: 0; }
.career-cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.24)); }
.career-cta__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.7); }
.career-cta__content { position: relative; z-index: 2; }
.career-cta h2 { font-size: clamp(40px,5vw,70px); }
.site-footer { padding: 65px 0 28px; color: rgba(255,255,255,.68); background: #050505; }
.site-footer__grid { display: grid; grid-template-columns: .75fr 1.5fr .55fr; gap: 45px; }
.site-footer__logo { width: 210px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.site-footer p { margin: 0 0 7px; }
.site-footer strong { color: #fff; }
.site-footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.site-footer__bottom { margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); font: 600 11px Montserrat,sans-serif; }
.prototype-note { color: #777; font-size: 12px; }

/* 5차 수정: 레퍼런스 기반 메인 비주얼 */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.home-hero { background:
  radial-gradient(circle at 74% 32%, rgba(98,126,255,.12), transparent 26%),
  radial-gradient(circle at 22% 76%, rgba(255,255,255,.08), transparent 30%),
  #030305;
}
.hero-motion { position: absolute; inset: 0; overflow: hidden; }
.hero-motion::before,
.hero-motion::after { content: ""; position: absolute; inset: -12%; }
.hero-motion::before { opacity: .26; background-image: radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.5px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, #000, transparent 94%); animation: starDrift 28s linear infinite; }
.hero-motion::after { background: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,.72) 82%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; filter: blur(.1px); animation: orbitFloat 13s ease-in-out infinite alternate; }
.hero-orbit--one { width: 66vw; height: 66vw; left: 8%; top: -27vw; }
.hero-orbit--two { width: 46vw; height: 46vw; right: -12vw; bottom: -27vw; animation-delay: -5s; }
.hero-orbit--three { width: 28vw; height: 28vw; left: 37%; top: 33%; border-color: rgba(130,151,255,.2); animation-delay: -9s; }
.hero-glow { position: absolute; width: 42vw; height: 42vw; left: 29%; top: 18%; border-radius: 50%; background: radial-gradient(circle, rgba(89,111,210,.16), transparent 66%); filter: blur(24px); animation: glowPulse 8s ease-in-out infinite alternate; }
@keyframes starDrift { from { transform: translate3d(0,0,0) rotate(0); } to { transform: translate3d(38px,38px,0) rotate(.01deg); } }
@keyframes orbitFloat { from { transform: translate3d(-2%,1%,0) scale(.98); } to { transform: translate3d(2%,-1%,0) scale(1.03); } }
@keyframes glowPulse { from { opacity: .55; transform: scale(.9); } to { opacity: 1; transform: scale(1.1); } }
.home-hero::after { background: radial-gradient(circle at center, rgba(0,0,0,.08), rgba(0,0,0,.44)); }
.home-hero__content { align-items: center; text-align: center; }
.home-hero__content .section-kicker { margin-bottom: 30px; }
.home-hero h1 { max-width: 1160px; font-size: clamp(44px,5.4vw,82px); }
.strength-card--join { border-style: dashed; background: transparent; }
.strength-card--join::before { background: radial-gradient(circle, rgba(255,255,255,.2), transparent 66%); }

/* 5차 수정: 그래프 하단 정렬 */
.growth-grid { position: relative; align-items: stretch; padding-bottom: 42px; }
.growth-grid::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: #078de6; }
.growth-copy { display: flex; flex-direction: column; height: 100%; }
.growth-facts { margin-top: auto; }
.growth-chart-wrap { display: flex; flex-direction: column; min-width: 0; height: 100%; }
.growth-bars { flex: 1; min-height: 520px; display: grid; grid-template-columns: repeat(4,1fr); align-items: end; gap: clamp(22px,4vw,64px); padding: 58px 6% 34px; border: 1px solid rgba(255,255,255,.2); background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px); background-size: 100% 25%; }
.growth-bar-item { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; text-align: center; }
.growth-bar { display: block; width: 72%; min-width: 46px; max-width: 98px; margin: 0 auto 18px; background: linear-gradient(180deg,#fff 0%,#747474 100%); box-shadow: inset 0 1px rgba(255,255,255,.75); transform: scaleY(0); transform-origin: bottom; transition: transform 1.15s cubic-bezier(.22,.72,.2,1); }
.growth-chart-wrap.is-visible .growth-bar { transform: scaleY(1); }
.growth-bar--1 { height: 21%; }.growth-bar--2 { height: 38%; }.growth-bar--3 { height: 64%; }.growth-bar--4 { height: 93%; }
.growth-bar-item strong { font: 750 13px Montserrat,sans-serif; }
.growth-bar-item small { color: rgba(255,255,255,.48); font-size: 11px; }
.growth-chart-wrap .chart-note { margin: 22px 0 0; }

/* 5차 수정: 이미지 안에서 열리는 프로다움 카드 */
.value-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
.value-card { min-height: 430px; }
.value-card > img { filter: brightness(.62) saturate(.76); }
.value-card__body { justify-content: flex-start; padding: 34px; background: linear-gradient(180deg,rgba(0,0,0,.65),rgba(0,0,0,.08) 64%,rgba(0,0,0,.36)); transition: background .3s ease, color .3s ease; }
.value-card__top { display: grid; justify-items: start; gap: 18px; }
.value-card h3 { max-width: 470px; font-size: clamp(24px,2.2vw,34px); }
.value-card .accordion-panel { max-width: 520px; margin-top: 18px; color: inherit; font-size: 16px; line-height: 1.75; }
.value-card.is-open .value-card__body { padding-bottom: 88px; color: #111; background: rgba(246,246,243,.84); backdrop-filter: blur(15px); }
.value-card.is-open > img { transform: scale(1.03); filter: blur(8px) saturate(.65); }
.value-card.is-open .accordion-button { position: absolute; bottom: 28px; left: 34px; color: #111; border-color: #111; background: transparent; }

/* 일하는 방식 */
.work-hero { padding: 170px 0 84px; background: #fff; }
.work-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(48px,6vw,86px); }
.work-hero p:last-child { max-width: 680px; color: #666; font-size: 18px; }
.work-principles { padding-top: 60px; }
.work-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.work-principle-card { position: relative; min-height: 500px; overflow: hidden; border-radius: 22px; background: #ddd; }
.work-principle-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .55s ease, filter .4s ease; }
.work-principle-card:hover > img { transform: scale(1.035); filter: saturate(.9); }
.work-principle-card__body { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 38px; color: #fff; background: linear-gradient(180deg,rgba(0,0,0,.7),transparent 68%,rgba(0,0,0,.22)); }
.work-principle-card h2 { max-width: 480px; margin-bottom: 20px; font-size: clamp(27px,3vw,40px); }
.work-principle-card .accordion-panel { max-width: 520px; color: inherit; font-size: 16px; line-height: 1.72; }
.work-principle-card.is-open .work-principle-card__body { color: #111; background: rgba(246,246,243,.86); backdrop-filter: blur(15px); }
.work-principle-card.is-open > img { filter: blur(8px) saturate(.5); }
.work-principle-card.is-open .accordion-button { color: #111; border-color: #111; background: transparent; }
.work-detail-list { display: grid; gap: 18px; }
.work-detail-list article { display: grid; grid-template-columns: .76fr 1.24fr; gap: 55px; padding: 42px; border-radius: 14px; background: rgba(255,255,255,.06); transition: background .25s ease, transform .25s ease; }
.work-detail-list article:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.work-detail-list h3 { font-size: 27px; }
.work-detail-list p { margin-bottom: 0; color: rgba(255,255,255,.62); }
.work-detail-list ol { margin: 0; padding-left: 23px; color: rgba(255,255,255,.82); }
.work-detail-list li + li { margin-top: 8px; }
.talent-section { padding: 120px 0; color: #fff; background: #050505; }
.talent-section h2 { margin-bottom: 55px; text-align: center; font-size: clamp(38px,4.4vw,62px); }
.talent-list { display: grid; gap: 13px; }
.talent-list p { margin: 0; padding: 24px 30px; border-radius: 9px; color: rgba(255,255,255,.48); background: #222; font-size: 18px; transition: .25s ease; }
.talent-list p:hover { color: #111; background: #fff; transform: translateX(5px); }
.talent-closing { margin-top: 70px; text-align: center; font-size: clamp(24px,3vw,37px); line-height: 1.45; }

/* 채용 화면 */
body[data-page="careers"] .site-header,
body[data-page="coffee"] .site-header,
body[data-page="process"] .site-header { color: #111; background: #fff; border-bottom: 1px solid #ececef; }
body[data-page="careers"] .site-logo img,
body[data-page="coffee"] .site-logo img,
body[data-page="process"] .site-logo img { filter: none; }
body[data-page="careers"] .site-nav__link::after,
body[data-page="coffee"] .site-nav__link::after,
body[data-page="process"] .site-nav__link::after { background: #111; }
body[data-page="careers"] .menu-toggle span,
body[data-page="coffee"] .menu-toggle span,
body[data-page="process"] .menu-toggle span { background: #111; }
.recruit-hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; color: #fff; background: #222; }
.recruit-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.72) brightness(.48); }
.recruit-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,12,17,.78),rgba(8,12,17,.24)); }
.recruit-hero__content { position: relative; z-index: 1; padding: 80px 0; }
.recruit-hero h1 { max-width: 820px; margin-bottom: 26px; font-size: clamp(40px,4.4vw,66px); }
.recruit-hero p { max-width: 850px; margin: 0; font-size: 18px; }
.recruit-quick { padding: 100px 0 72px; }
.recruit-quick__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.recruit-quick article { padding: 32px 0 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.recruit-quick h2 { font-size: 24px; line-height: 1.35; }
.recruit-quick p { min-height: 56px; color: #666; }
.recruit-button,
.apply-button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border: 0; border-radius: 5px; color: #fff; background: #080808; font-weight: 750; cursor: pointer; }
.recruit-message { padding: 50px 0 120px; }
.recruit-message h2 { font-size: clamp(38px,4.1vw,60px); }
.recruit-message p { max-width: 720px; color: #666; font-size: 18px; }
.recruit-positions { padding-top: 80px; }
.recruit-positions__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 55px; }
.recruit-positions__heading h2 { margin-bottom: 0; font-size: clamp(38px,4vw,58px); }
.job-search { display: flex; align-items: center; width: min(370px,100%); border: 1px solid var(--line); border-radius: 8px; }
.job-search input { width: 100%; padding: 16px; border: 0; outline: 0; background: transparent; }
.job-search span:last-child { padding: 0 16px; font-size: 24px; }
.job-browser { display: grid; grid-template-columns: 250px 1fr; gap: 50px; align-items: start; }
.job-sidebar { position: sticky; top: 110px; }
.filter-title { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 750; }
.filter-title button { padding: 6px 8px; border: 1px solid var(--line); border-radius: 5px; background: #fff; color: #666; cursor: pointer; font-size: 12px; }
.filter-section { display: grid; gap: 13px; margin: 0; padding: 26px 0; border: 0; border-bottom: 1px solid var(--line); }
.filter-section legend { margin-bottom: 16px; font-size: 17px; font-weight: 750; }
.filter-section label { display: flex; gap: 10px; align-items: center; color: #555; cursor: pointer; font-size: 14px; }
.filter-section input { width: 17px; height: 17px; accent-color: #5f55ff; }
.recruit-positions .job-list { border-top: 0; }
.recruit-positions .job-row { gap: 22px; padding: 31px 0; }
.recruit-positions .job-row:hover h3 { text-decoration: underline; text-underline-offset: 5px; }
.recruit-positions .job-row__main { padding: 0; }
.recruit-positions .job-row h3 { margin: 0 0 12px; font-size: 25px; }
.recruit-positions .job-row > small { color: #777; }
.job-empty { padding: 60px 0; text-align: center; color: #777; }

/* 커피챗 상세 */
.narrow-container { width: min(calc(100% - 64px), 980px); margin: 0 auto; }
.job-posting-head { padding: 48px 0; border-bottom: 1px solid var(--line); background: #fff; }
.job-posting-head__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.job-posting-head h1 { margin: 0 0 10px; font-size: clamp(34px,4vw,52px); }
.job-posting-head p { margin: 0; color: #555; }
.job-posting-head__actions { display: flex; gap: 12px; }
.share-button { width: 50px; height: 50px; border: 1px solid #080808; border-radius: 7px; background: #fff; cursor: pointer; font-size: 23px; }
.job-posting-body { padding: 45px 0 110px; }
.coffee-article > section { padding: 42px 0; border-bottom: 1px solid var(--line); }
.coffee-article h2 { font-size: 33px; }
.coffee-article h3 { font-size: 24px; }
.coffee-article p,
.coffee-article li { font-size: 17px; line-height: 1.85; }
.coffee-article ul,
.coffee-article ol { padding-left: 26px; }
.coffee-article li + li { margin-top: 8px; }
.coffee-tip { color: #e45a45; }
.coffee-article__apply { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 38px 0; border-bottom: 1px solid var(--line); font-size: 19px; }
.office-card { margin-top: 70px; padding: 28px; border: 1px solid var(--line); border-radius: 8px; }
.office-card p { margin: 8px 0 0; color: #666; font-size: 14px; }
body.modal-open { overflow: hidden; }
.modal-backdrop { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(0,0,0,.7); }
.modal-backdrop[hidden] { display: none; }
.coffee-modal { width: min(780px,100%); max-height: calc(100vh - 48px); overflow-y: auto; border-radius: 16px; background: #fff; }
.coffee-modal__head { display: flex; align-items: flex-start; justify-content: space-between; padding: 30px 32px 0; }
.coffee-modal__head h2 { margin: 0; font-size: 34px; }
.coffee-modal__head button { border: 0; background: transparent; cursor: pointer; font-size: 34px; line-height: 1; }
.coffee-modal .form-card { border-radius: 0 0 16px 16px; background: #fff; }

/* 채용 프로세스 */
.process-page { padding: 95px 0 130px; background: #fff; }
.process-page > .container { width: min(calc(100% - 64px), 980px); }
.process-page__intro h1 { margin-bottom: 22px; font: 750 clamp(48px,4.4vw,64px)/1 Montserrat,sans-serif; letter-spacing: -.04em; }
.process-page__intro > p:last-child { max-width: 670px; font-size: 18px; }
.process-overview { display: grid; grid-template-columns: repeat(5,1fr auto) 1fr; align-items: center; gap: 12px; margin: 90px 0; }
.process-overview div { display: grid; place-items: center; aspect-ratio: 1; padding: 18px; border-radius: 50%; color: #fff; background: #27282d; text-align: center; font-size: 18px; font-weight: 750; }
.process-overview span { font-size: 34px; }
.process-notice { padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-notice h2 { font-size: 24px; }
.process-notice li { margin: 7px 0; }
.process-detail-list article { display: grid; grid-template-columns: 290px 1fr; gap: 54px; padding: 58px 0; border-bottom: 1px solid var(--line); }
.process-detail-list h2 { margin: 0; font-size: 31px; }
.process-detail-list h2 span { margin-right: 10px; color: #09995b; font: 750 28px Montserrat,sans-serif; }
.process-detail-list p { margin: 0; font-size: 17px; line-height: 1.8; }
.process-back { margin-top: 65px; }

@media (max-width: 1080px) {
  .section { padding: 100px 0; }
  .site-nav { gap: 24px; }
  .growth-grid, .story-split, .coffee-layout, .form-wrap { grid-template-columns: 1fr; }
  .growth-grid { padding: 95px 0; }
  .line-chart { margin-top: 40px; }
  .strength-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid, .team-grid, .story-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .brand-row { gap: 45px; }
  .people-banner { grid-template-columns: 1fr; }
  .people-banner img { min-height: 380px; }
}

@media (max-width: 760px) {
  :root { --header: 68px; }
  .container { width: min(calc(100% - 36px), var(--max)); }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .site-header__inner { width: calc(100% - 36px); }
  .site-logo img { width: 165px; }
  .site-nav { display: none; }
  .menu-toggle { display: grid; gap: 7px; padding: 10px 0; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 26px; height: 1px; background: #fff; transition: .2s ease; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: var(--header) 0 0; display: block; padding: 20px 18px 50px; overflow-y: auto; background: #050505; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu details { border-bottom: 1px solid rgba(255,255,255,.18); }
  .mobile-menu summary { padding: 22px 0; font-size: 22px; font-weight: 700; cursor: pointer; }
  .mobile-menu details div { padding: 0 0 20px; }
  .mobile-menu a { display: block; padding: 9px 0; color: rgba(255,255,255,.65); }
  .home-hero h1 { font-size: clamp(39px,11vw,60px); }
  .home-hero::after { background: linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.35)); }
  .strength-shell { padding: 80px 0; }
  .strength-grid, .value-grid, .team-grid, .story-grid { grid-template-columns: 1fr; }
  .strength-card { min-height: 230px; }
  .brand-row { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
  .brand-row:nth-child(even) .brand-row__copy, .brand-row:nth-child(even) .brand-row__visual { order: initial; }
  .brand-row__logo { margin-bottom: 28px; }
  .growth-grid { min-height: auto; }
  .growth-fact strong { font-size: 22px; }
  .line-chart { min-height: 330px; }
  .chart-number { font-size: 34px; }
  .benefit-grid, .statement-grid { grid-template-columns: 1fr; }
  .benefit-item { min-height: 210px; }
  .page-hero { min-height: 570px; }
  .page-title { padding: 120px 0 55px; }
  .statement { min-height: 310px; padding: 34px; }
  .statement h3 { margin-top: 65px; }
  .history-row { grid-template-columns: 90px 1fr; gap: 20px; }
  .certificate-strip { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 80px 1fr; }
  .principle > div:last-child { display: none; }
  .news-row { grid-template-columns: 1fr 30px; gap: 10px; }
  .news-row time { grid-column: 1/-1; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .job-detail-grid { grid-template-columns: 1fr; }
  .apply-card { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full, .form-consent, .form-status { grid-column: 1; }
  .form-card { padding: 25px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__links { align-items: flex-start; }
  .career-cta { min-height: 500px; }
}
.news-loading { padding: 72px 0; color: #777; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .work-principle-card { min-height: 430px; }
  .work-detail-list article { grid-template-columns: 1fr; gap: 24px; }
  .process-overview { display: flex; overflow-x: auto; padding-bottom: 12px; }
  .process-overview div { flex: 0 0 138px; }
  .process-overview span { flex: 0 0 auto; }
}

@media (max-width: 760px) {
  .home-hero h1 { font-size: clamp(36px,10vw,54px); }
  .home-hero__content .section-kicker { margin-bottom: 22px; }
  .hero-orbit--one { width: 120vw; height: 120vw; left: -15%; top: -25vw; }
  .hero-orbit--two { width: 90vw; height: 90vw; }
  .strength-card--join { min-height: 190px; }
  .growth-grid { padding-bottom: 32px; }
  .growth-grid::after { height: 3px; }
  .growth-bars { min-height: 360px; gap: 10px; padding: 40px 10px 26px; }
  .growth-bar { width: 68%; min-width: 28px; }
  .growth-bar-item strong { font-size: 11px; }
  .growth-bar-item small { font-size: 9px; word-break: keep-all; }
  .value-card { min-height: 390px; }
  .value-card__body { padding: 26px; }
  .value-card.is-open .accordion-button { left: 26px; }
  .work-hero { padding: 120px 0 50px; }
  .work-hero h1 { font-size: clamp(42px,12vw,64px); }
  .work-card-grid { grid-template-columns: 1fr; }
  .work-principle-card { min-height: 410px; }
  .work-principle-card__body { padding: 28px; }
  .work-detail-list article { padding: 30px 24px; }
  .talent-section { padding: 80px 0; }
  .talent-list p { padding: 20px; font-size: 16px; }
  .talent-closing { margin-top: 50px; }
  .recruit-hero { min-height: 520px; }
  .recruit-hero__content { padding: 60px 0; }
  .recruit-hero h1 { font-size: clamp(36px,10vw,52px); }
  .recruit-hero p { font-size: 16px; }
  .recruit-quick { padding: 60px 0 30px; }
  .recruit-quick__grid { grid-template-columns: 1fr; gap: 4px; }
  .recruit-quick article { padding: 28px 0; }
  .recruit-quick p { min-height: 0; }
  .recruit-message { padding: 45px 0 80px; }
  .recruit-positions { padding-top: 60px; }
  .recruit-positions__heading { align-items: stretch; flex-direction: column; }
  .job-search { width: 100%; }
  .job-browser { grid-template-columns: 1fr; gap: 34px; }
  .job-sidebar { position: static; }
  .filter-section { grid-template-columns: repeat(2,1fr); }
  .filter-section legend { grid-column: 1/-1; }
  .recruit-positions .job-row { align-items: start; }
  .recruit-positions .job-row h3 { font-size: 22px; }
  .recruit-positions .job-row > small { padding-top: 2px; white-space: nowrap; }
  .narrow-container { width: min(calc(100% - 36px), 980px); }
  .job-posting-head { padding: 35px 0; }
  .job-posting-head__inner { align-items: flex-start; flex-direction: column; }
  .job-posting-head__actions { width: 100%; }
  .job-posting-head__actions .apply-button { flex: 1; }
  .coffee-article > section { padding: 34px 0; }
  .coffee-article h2 { font-size: 28px; }
  .coffee-article p,
  .coffee-article li { font-size: 15px; }
  .coffee-article__apply { align-items: stretch; flex-direction: column; }
  .coffee-modal__head { padding: 25px 24px 0; }
  .process-page { padding: 70px 0 90px; }
  .process-overview { margin: 60px 0; }
  .process-overview div { flex-basis: 120px; font-size: 15px; }
  .process-detail-list article { grid-template-columns: 1fr; gap: 20px; padding: 42px 0; }
  .process-detail-list h2 { font-size: 27px; }
}

/* 6차 수정: 지정된 화면만 롤백·보정 */
.home-hero {
  background: #030303;
}

.home-hero::after {
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.16) 62%, rgba(0,0,0,.42));
}

.hero-slide img {
  filter: grayscale(.28) brightness(.64) contrast(1.08);
}

.hero-slide:nth-child(2) img {
  filter: grayscale(.16) brightness(.58) contrast(1.08);
}

.hero-slide:nth-child(3) img {
  filter: grayscale(.08) brightness(.56) contrast(1.06);
}

body[data-page="home"] .strength-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

body[data-page="home"] .strength-card small::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: rgba(255,255,255,.2);
  content: "";
}

body[data-page="home"] .strength-card h3 {
  margin: 22px 0 8px;
}

body[data-page="home"] .strength-card p {
  margin: 0;
}

.growth-grid::after {
  display: none;
}

body[data-page="home"] .value-card {
  min-height: 350px;
}

body[data-page="home"] .value-card.is-open .value-card__body {
  color: #fff;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(3px);
}

body[data-page="home"] .value-card.is-open > img {
  transform: scale(1.025);
  filter: brightness(.5) saturate(.72);
}

body[data-page="home"] .value-card.is-open .accordion-button {
  color: #fff;
  border-color: rgba(255,255,255,.85);
}

.benefit-icon {
  border: 0;
  background: #efeee8;
  font: 400 24px/1 sans-serif;
}

.mission-section .section-heading {
  align-items: start;
}

.mission-section .statement h3 {
  margin-top: 52px;
}

body[data-page="culture"] .talent-list p:hover {
  color: #111;
  background: #fff;
  transform: translateX(5px);
}

body[data-page="welfare"] .section {
  padding: 78px 0;
}

body[data-page="welfare"] .benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

body[data-page="welfare"] .benefit-item {
  min-height: 178px;
  padding: 20px 22px;
}

body[data-page="welfare"] .benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  font-size: 20px;
}

body[data-page="welfare"] .benefit-item h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

body[data-page="welfare"] .benefit-item p {
  font-size: 12px;
  line-height: 1.55;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: 48px;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.news-featured__image {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.news-featured__image img,
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.news-featured:hover img,
.news-card:hover img {
  transform: scale(1.035);
}

.news-featured__copy h2 {
  margin: 18px 0;
  font-size: clamp(34px, 3.5vw, 52px);
}

.news-featured__copy time {
  display: block;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.news-category {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.news-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 70px 0 28px;
}

.news-section-heading p,
.news-section-heading h2 {
  margin: 0;
}

.news-section-heading h2 {
  font-size: 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 18px;
}

.news-card {
  display: block;
}

.news-card__image {
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--paper);
}

.news-card h3 {
  min-height: 62px;
  margin: 14px 0 18px;
  font-size: 23px;
}

.news-card time {
  color: var(--muted);
  font-size: 13px;
}

body[data-page="stories"] .story-card {
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

body[data-page="stories"] .story-card__visual {
  border-radius: 14px;
}

body[data-page="stories"] .story-card__body {
  padding: 22px 0 0;
}

body[data-page="stories"] .story-card .text-link {
  display: inline-block;
  margin-top: 16px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 76px;
  align-items: start;
}

.faq-categories {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 8px;
}

.faq-categories button {
  padding: 11px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}

.faq-categories button.is-active {
  color: var(--ink);
  font-weight: 800;
}

body[data-page="faq"] .faq-list {
  border-top-color: var(--ink);
}

body[data-page="faq"] .faq-item .accordion-button {
  padding: 27px 0;
  font-size: 20px;
  line-height: 1.45;
}

body[data-page="faq"] .faq-item .accordion-button small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

/* 7차 수정: 지정 영역 크기·비주얼 보정 */
.home-hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 30%, rgba(98, 126, 255, .16), transparent 24%),
    radial-gradient(circle at 22% 78%, rgba(255, 255, 255, .07), transparent 30%),
    #020204;
}

.home-hero::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .42)),
    radial-gradient(circle at center, transparent 8%, rgba(0, 0, 0, .34) 72%);
}

.hero-motion {
  z-index: 0;
}

.hero-celestial {
  position: absolute;
  z-index: 0;
  inset: -5%;
  background-image: url("assets/generated/hero-celestial-v8.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
  animation: celestialDrift 22s ease-in-out infinite alternate;
}

.hero-motion::before {
  z-index: 1;
  opacity: .28;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .95) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(116, 143, 255, .8) 0 1px, transparent 1.7px);
  background-position: 0 0, 19px 19px;
  background-size: 42px 42px;
}

.hero-motion::after {
  z-index: 4;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255,255,255,.05) 46%, transparent 64%),
    radial-gradient(ellipse at center, transparent 13%, rgba(0, 0, 0, .52) 86%);
  pointer-events: none;
}

.hero-orbit,
.hero-glow,
.hero-beam,
.hero-prism {
  z-index: 2;
}

.hero-beam {
  position: absolute;
  width: 70vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150, 169, 255, .7), rgba(255,255,255,.92), transparent);
  box-shadow: 0 0 28px rgba(118, 142, 255, .5);
  transform-origin: left center;
  animation: beamSweep 12s ease-in-out infinite alternate;
}

.hero-beam--one {
  top: 28%;
  left: 12%;
  transform: rotate(19deg);
}

.hero-beam--two {
  right: -8%;
  bottom: 27%;
  opacity: .55;
  transform: rotate(-24deg);
  animation-delay: -6s;
}

.hero-prism {
  position: absolute;
  top: 31%;
  left: 56%;
  width: clamp(180px, 24vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 44%),
    linear-gradient(320deg, rgba(100,126,255,.09), transparent 58%);
  box-shadow: inset 0 0 70px rgba(111,135,255,.05), 0 0 90px rgba(80,103,211,.06);
  mix-blend-mode: screen;
  transform: rotate(32deg);
  animation: prismFloat 11s ease-in-out infinite alternate;
}

@keyframes celestialDrift {
  from { transform: scale(1.015) translate3d(-.7%, -.4%, 0); }
  to { transform: scale(1.075) translate3d(.9%, .55%, 0); }
}

@keyframes beamSweep {
  from { opacity: .28; translate: -3% 2%; }
  to { opacity: .9; translate: 4% -3%; }
}

@keyframes prismFloat {
  from { transform: rotate(27deg) translate3d(-2%, 2%, 0) scale(.92); }
  to { transform: rotate(38deg) translate3d(3%, -2%, 0) scale(1.06); }
}

.hero-spark {
  --spark-size: 12px;
  position: absolute;
  z-index: 3;
  width: var(--spark-size);
  height: var(--spark-size);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px 2px rgba(255,255,255,.92),
    0 0 22px 6px rgba(161,181,255,.48);
  animation: heroTwinkle 3.4s ease-in-out infinite;
}

.hero-spark::before,
.hero-spark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-spark::before {
  width: calc(var(--spark-size) * 7);
  height: 1px;
}

.hero-spark::after {
  width: 1px;
  height: calc(var(--spark-size) * 7);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.95), transparent);
}

.hero-spark--1 { --spark-size: 8px; top: 15%; left: 9%; animation-delay: -.3s; }
.hero-spark--2 { --spark-size: 5px; top: 24%; left: 34%; animation-delay: -1.8s; }
.hero-spark--3 { --spark-size: 9px; top: 18%; right: 13%; animation-delay: -2.6s; }
.hero-spark--4 { --spark-size: 6px; top: 38%; right: 6%; animation-delay: -.9s; }
.hero-spark--5 { --spark-size: 5px; top: 57%; left: 14%; animation-delay: -2.1s; }
.hero-spark--6 { --spark-size: 8px; bottom: 16%; left: 7%; animation-delay: -1.1s; }
.hero-spark--7 { --spark-size: 6px; bottom: 20%; left: 39%; animation-delay: -3s; }
.hero-spark--8 { --spark-size: 10px; right: 11%; bottom: 12%; animation-delay: -1.5s; }
.hero-spark--9 { --spark-size: 4px; top: 12%; left: 59%; animation-delay: -2.4s; }
.hero-spark--10 { --spark-size: 5px; right: 30%; bottom: 27%; animation-delay: -.5s; }
.hero-spark--11 { --spark-size: 4px; top: 70%; left: 24%; animation-delay: -1.9s; }
.hero-spark--12 { --spark-size: 7px; top: 43%; right: 26%; animation-delay: -2.8s; }

@keyframes heroTwinkle {
  0%, 100% { opacity: .2; transform: scale(.45) rotate(0deg); }
  44% { opacity: 1; transform: scale(1.04) rotate(8deg); }
  62% { opacity: .64; transform: scale(.7) rotate(13deg); }
}

body[data-page="home"] .strength-card {
  background:
    radial-gradient(circle at 88% 14%, rgba(153,171,255,.1), transparent 34%),
    linear-gradient(145deg, #2b2b2d, #0c0c0d 62%);
}

body[data-page="home"] .strength-card:nth-child(even) {
  background:
    radial-gradient(circle at 12% 88%, rgba(255,255,255,.08), transparent 36%),
    linear-gradient(145deg, #252527, #0a0a0b 65%);
}

body[data-page="home"] .value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .value-card {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.value-card__image,
.work-principle-card__image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(.58) saturate(.76);
  transition: transform .5s ease, filter .4s ease;
}

.value-card--visual-1 .value-card__image { background-image: url("assets/generated/professionalism-1.png"); }
.value-card--visual-2 .value-card__image { background-image: url("assets/generated/professionalism-2.png"); }
.value-card--visual-3 .value-card__image { background-image: url("assets/generated/professionalism-3.png"); }
.value-card--visual-4 .value-card__image { background-image: url("assets/generated/professionalism-4.png"); }

.value-card:hover .value-card__image,
.work-principle-card:hover .work-principle-card__image {
  transform: scale(1.035);
}

body[data-page="home"] .value-card__body {
  padding: 24px;
}

body[data-page="home"] .value-card h3 {
  max-width: 230px;
  font-size: clamp(20px, 1.65vw, 25px);
}

body[data-page="home"] .value-card .accordion-button {
  width: 40px;
  height: 40px;
  font-size: 22px;
}

body[data-page="home"] .value-card .accordion-panel {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.58;
}

body[data-page="home"] .value-card.is-open .value-card__body {
  padding: 22px 22px 68px;
}

body[data-page="home"] .value-card.is-open .value-card__image {
  transform: scale(1.035);
  filter: blur(7px) brightness(.7) saturate(.6);
}

body[data-page="home"] .value-card.is-open .accordion-button {
  bottom: 18px;
  left: 22px;
}

body[data-page="culture"] .work-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="culture"] .work-principle-card {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.work-principle-card--visual-1 .work-principle-card__image { background-image: url("assets/generated/how-we-work-1.png"); }
.work-principle-card--visual-2 .work-principle-card__image { background-image: url("assets/generated/how-we-work-2.png"); }
.work-principle-card--visual-3 .work-principle-card__image { background-image: url("assets/generated/how-we-work-3.png"); }
.work-principle-card--visual-4 .work-principle-card__image { background-image: url("assets/generated/how-we-work-4.png"); }

body[data-page="culture"] .work-principle-card__body {
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,.7), transparent 56%, rgba(0,0,0,.3));
}

body[data-page="culture"] .work-principle-card h2 {
  max-width: 250px;
  margin-bottom: 14px;
  font-size: clamp(20px, 1.65vw, 25px);
}

body[data-page="culture"] .work-principle-card .accordion-button {
  width: 40px;
  height: 40px;
  font-size: 22px;
}

body[data-page="culture"] .work-principle-card .accordion-panel {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.58;
}

body[data-page="culture"] .work-principle-card.is-open .work-principle-card__image {
  transform: scale(1.035);
  filter: blur(7px) brightness(.72) saturate(.58);
}

.work-career-link {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.talent-section .work-career-link {
  margin-top: 44px;
}

.career-visual {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.career-visual--people { background-image: url("assets/generated/careers-people.png"); }
.career-visual--hero { background-image: url("assets/generated/careers-hero.png"); }
.career-visual--join { background-image: url("assets/generated/careers-join.png"); }
.career-visual--cta { background-image: url("assets/generated/careers-cta.png"); }

.people-banner__visual {
  width: 100%;
  min-height: 480px;
  filter: grayscale(.14) saturate(.82);
}

.recruit-hero__visual {
  position: absolute;
  inset: 0;
  filter: grayscale(.28) brightness(.52);
}

.recruit-message__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.recruit-message__visual {
  min-height: 360px;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,.12);
}

.career-cta__media.career-visual {
  filter: grayscale(.28) brightness(.7);
}

body[data-page="careers"] .job-sidebar .filter-section {
  padding-top: 34px;
}

body[data-page="careers"] .job-sidebar .filter-section legend {
  margin-bottom: 24px;
  transform: translateY(8px);
}

@media (max-width: 1080px) {
  body[data-page="home"] .value-grid,
  body[data-page="culture"] .work-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-message__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .recruit-message__visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .hero-celestial {
    inset: -2% -18%;
    background-position: 46% center;
  }

  .hero-prism {
    top: 36%;
    left: 47%;
    width: 58vw;
  }

  .hero-beam {
    width: 105vw;
  }

  body[data-page="home"] .value-grid,
  body[data-page="culture"] .work-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .value-card,
  body[data-page="culture"] .work-principle-card {
    min-height: 340px;
    aspect-ratio: auto;
  }

  body[data-page="home"] .value-card h3,
  body[data-page="culture"] .work-principle-card h2 {
    font-size: 24px;
  }

  .people-banner__visual {
    min-height: 360px;
  }

  .recruit-message__visual {
    min-height: 300px;
  }

  .site-footer__links {
    align-items: flex-start;
  }
}

body[data-page="faq"] .faq-item .accordion-panel {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
}

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

.recruit-quick__coffee {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  column-gap: 60px;
  align-items: end;
  padding: 48px !important;
  border: 0 !important;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #16171b, #292b32);
}

.recruit-quick__coffee .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 22px;
  color: rgba(255,255,255,.58);
}

.recruit-quick__coffee h2 {
  grid-row: 2 / span 2;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
}

.recruit-quick__coffee p {
  min-height: 0;
  margin-bottom: 26px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}

.recruit-quick__coffee .recruit-button {
  width: fit-content;
  color: #111;
  background: #fff;
}

@media (max-width: 980px) {
  .news-featured,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .value-card {
    min-height: 340px;
  }

  body[data-page="welfare"] .benefit-grid,
  .news-grid,
  .recruit-quick__grid {
    grid-template-columns: 1fr;
  }

  .news-featured {
    gap: 26px;
    padding-bottom: 54px;
  }

  .news-section-heading {
    display: block;
  }

  .news-section-heading h2 {
    margin-top: 8px;
  }

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

  .recruit-quick__coffee {
    grid-column: auto;
    display: block;
    padding: 32px 26px !important;
  }

  .recruit-quick__coffee h2 {
    margin-bottom: 18px;
  }
}

/* ============================================================
   9차 수정 — 메인 히어로 재설계 (이미지 파일 없이 CSS/SVG로 구현)
   ------------------------------------------------------------
   ▣ 분위기 바꾸는 법
     index.html 의 <section class="home-hero" data-hero="orbit">
     에서 aurora 를 prism 또는 orbit 으로 바꾸면 됩니다.
       aurora — 오로라가 아주 느리게 흐르는 느낌
       prism  — 얇은 빛줄기가 스치는 건축적인 느낌
       orbit  — 커다란 호가 천천히 도는 미니멀한 느낌 (적용값)
   ▣ 이전 8차 히어로(hero-celestial 등) 규칙은 아래에서 무력화했습니다.
   ============================================================ */

/* 8차 히어로 잔여 규칙 무력화 (마크업에서 제거된 요소들) */
.hero-celestial, .hero-motion, .hero-orbit, .hero-glow,
.hero-beam, .hero-prism, .hero-spark, .hero-slide {
  display: none !important;
  background-image: none !important;
  animation: none !important;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #000105;
  color: #fff;
}
.home-hero::after { content: none; }

.hero-stage { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-stage > span { position: absolute; display: block; pointer-events: none; }

.hero-veil { border-radius: 50%; filter: blur(90px); will-change: transform, opacity; }
.hero-arc  { border-radius: 50%; border: 1px solid transparent; will-change: transform; }

.hero-grain {
  inset: -50%; z-index: 3; opacity: .13; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: heroGrain 5s steps(4) infinite;
}
.hero-vignette {
  inset: 0; z-index: 4;
  background:
    radial-gradient(ellipse 62% 52% at 50% 48%, rgba(0,0,0,.62), transparent 74%),
    linear-gradient(180deg, rgba(0,0,0,.42), transparent 26% 62%, rgba(0,0,0,.58));
}

/* ═══ A. AURORA (기본) ═══ */
[data-hero="aurora"] .hero-veil--a {
  width: 88vw; height: 66vw; left: -14vw; top: -22vw;
  background: radial-gradient(circle at 50% 50%, rgba(122,168,255,.50), rgba(122,168,255,0) 62%);
  animation: veilDriftA 34s ease-in-out infinite alternate;
}
[data-hero="aurora"] .hero-veil--b {
  width: 74vw; height: 58vw; right: -18vw; bottom: -20vw;
  background: radial-gradient(circle at 50% 50%, rgba(178,150,255,.42), rgba(178,150,255,0) 64%);
  animation: veilDriftB 42s ease-in-out infinite alternate;
}
[data-hero="aurora"] .hero-veil--c {
  width: 46vw; height: 36vw; left: 46%; top: 52%;
  background: radial-gradient(circle at 50% 50%, rgba(255,226,178,.30), rgba(255,226,178,0) 66%);
  animation: veilDriftC 28s ease-in-out infinite alternate;
}
[data-hero="aurora"] .hero-arc--1 {
  width: 128vw; height: 128vw; left: -14vw; top: -46vw;
  border-color: rgba(255,255,255,.075);
  animation: arcSpin 120s linear infinite;
}
[data-hero="aurora"] .hero-arc--2 {
  width: 92vw; height: 92vw; right: -26vw; bottom: -40vw;
  border-color: rgba(150,180,255,.10);
  animation: arcSpin 90s linear infinite reverse;
}

/* ═══ B. PRISM ═══ */
[data-hero="prism"] .hero-veil { filter: blur(70px); border-radius: 0; }
[data-hero="prism"] .hero-veil--a {
  width: 30vw; height: 150vh; left: 8%; top: -25vh;
  background: linear-gradient(180deg, transparent, rgba(140,178,255,.34), transparent);
  animation: beamGlide 26s ease-in-out infinite alternate;
}
[data-hero="prism"] .hero-veil--b {
  width: 22vw; height: 150vh; left: 46%; top: -25vh;
  background: linear-gradient(180deg, transparent, rgba(214,196,255,.30), transparent);
  animation: beamGlide 34s ease-in-out infinite alternate-reverse;
}
[data-hero="prism"] .hero-veil--c {
  width: 26vw; height: 150vh; right: 6%; top: -25vh;
  background: linear-gradient(180deg, transparent, rgba(255,232,196,.26), transparent);
  animation: beamGlide 30s ease-in-out infinite alternate;
}
[data-hero="prism"] .hero-arc--1 {
  width: 160vw; height: 1px; left: -30vw; top: 38%; border: 0; border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  animation: lineSweep 22s ease-in-out infinite alternate;
}
[data-hero="prism"] .hero-arc--2 {
  width: 160vw; height: 1px; left: -30vw; top: 63%; border: 0; border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(160,190,255,.20), transparent);
  animation: lineSweep 30s ease-in-out infinite alternate-reverse;
}

/* ═══ C. ORBIT ═══ */
[data-hero="orbit"] .hero-veil--a {
  width: 70vw; height: 70vw; left: 50%; top: 50%; margin: -35vw 0 0 -35vw;
  background: radial-gradient(circle at 50% 50%, rgba(126,158,255,.34), rgba(126,158,255,0) 60%);
  animation: veilPulse 20s ease-in-out infinite alternate;
}
[data-hero="orbit"] .hero-veil--b,
[data-hero="orbit"] .hero-veil--c { display: none; }
[data-hero="orbit"] .hero-arc--1 {
  width: 96vw; height: 96vw; left: 50%; top: 50%; margin: -48vw 0 0 -48vw;
  transform-origin: center;
  border-color: rgba(255,255,255,.16); border-top-color: rgba(190,210,255,.55);
  animation: arcSpin 46s linear infinite;
}
[data-hero="orbit"] .hero-arc--2 {
  width: 66vw; height: 66vw; left: 50%; top: 50%; margin: -33vw 0 0 -33vw;
  transform-origin: center;
  border-color: rgba(255,255,255,.10); border-bottom-color: rgba(230,210,180,.42);
  animation: arcSpin 66s linear infinite reverse;
}

/* ═══ 콘텐츠 ═══ */
.home-hero__content {
  position: relative; z-index: 5; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding-top: var(--header);
}
.home-hero__content .section-kicker { margin-bottom: 26px; letter-spacing: .28em; }
.home-hero h1 {
  max-width: 1120px; font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 720; line-height: 1.24; letter-spacing: -.022em;
  text-wrap: balance; text-shadow: 0 2px 40px rgba(0,0,0,.55);
}
.home-hero__scroll { z-index: 5; }

/* ═══ 모션 ═══ */
@keyframes veilDriftA { 0%{transform:translate3d(0,0,0) scale(1);opacity:.82} 100%{transform:translate3d(7vw,5vh,0) scale(1.16);opacity:1} }
@keyframes veilDriftB { 0%{transform:translate3d(0,0,0) scale(1.08);opacity:.72} 100%{transform:translate3d(-8vw,-6vh,0) scale(1);opacity:.96} }
@keyframes veilDriftC { 0%{transform:translate3d(-50%,-50%,0) scale(.92);opacity:.5} 100%{transform:translate3d(-44%,-58%,0) scale(1.2);opacity:.84} }
@keyframes veilPulse  { 0%{transform:scale(.94);opacity:.66} 100%{transform:scale(1.12);opacity:1} }
@keyframes arcSpin    { to { transform: rotate(360deg); } }
@keyframes beamGlide  { 0%{transform:rotate(14deg) translateX(-4vw);opacity:.55} 100%{transform:rotate(14deg) translateX(6vw);opacity:1} }
@keyframes lineSweep  { 0%{transform:translateX(-6vw);opacity:.35} 100%{transform:translateX(6vw);opacity:.9} }
@keyframes heroGrain  { 0%,100%{transform:translate(0,0)} 25%{transform:translate(-3%,2%)} 50%{transform:translate(2%,-3%)} 75%{transform:translate(3%,3%)} }

/* ═══ 모바일 ═══ */
@media (max-width: 768px) {
  .home-hero h1 { font-size: clamp(32px, 8.4vw, 46px); }
  .home-hero__subtitle { max-width: 88%; margin-top: 22px; font-size: 14px; }
  .hero-veil { filter: blur(64px); }
  [data-hero="aurora"] .hero-veil--a { width: 130vw; height: 100vw; left: -22vw; }
  [data-hero="aurora"] .hero-veil--b { width: 120vw; height: 96vw; right: -30vw; }
  [data-hero="orbit"] .hero-veil--a { width: 120vw; height: 120vw; margin: -60vw 0 0 -60vw; }
  [data-hero="orbit"] .hero-arc--1 { width: 145vw; height: 145vw; margin: -72.5vw 0 0 -72.5vw; }
  [data-hero="orbit"] .hero-arc--2 { width: 96vw; height: 96vw; margin: -48vw 0 0 -48vw; }
  .growth-story { padding: 28px 24px; }
  .growth-story li { grid-template-columns: 38px 1fr; gap: 14px; }
  .hero-grain { opacity: .1; }
}

/* ═══ 모션 최소화 설정 존중 ═══ */
@media (prefers-reduced-motion: reduce) {
  .hero-veil, .hero-arc, .hero-grain { animation: none !important; }
  .hero-grain { opacity: .08; }
}

/* GA4 이용 분석 허용 */
.analytics-consent {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 22px;
  color: #f7f7f5;
  background: rgba(17, 17, 17, .96);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
}
.analytics-consent__copy { display: grid; gap: 5px; }
.analytics-consent__copy strong { font-size: 14px; }
.analytics-consent__copy span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.55;
}
.analytics-consent__copy a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.analytics-consent__actions { display: flex; flex: 0 0 auto; gap: 8px; }
.analytics-consent__actions button {
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.analytics-consent__actions [data-ga-consent-grant] {
  color: #111;
  background: #fff;
  border-color: #fff;
}
.analytics-consent__actions button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

@media (max-width: 720px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    gap: 16px;
    padding: 18px;
  }
  .analytics-consent__actions { justify-content: stretch; }
  .analytics-consent__actions button { flex: 1 1 0; }
}

/* ============================================================
   11차 수정 — 별빛 Hero · 콘텐츠 구조 · 실제 사내 이미지
   ============================================================ */

/* 메인 Hero: 회전하는 별 궤적 */
[data-hero="star-trails"] .hero-startrails {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
[data-hero="star-trails"] .hero-nebula {
  z-index: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .7;
}
[data-hero="star-trails"] .hero-nebula--a {
  width: 58vw;
  height: 58vw;
  top: -28vw;
  left: 20%;
  background: rgba(57, 78, 128, .34);
  animation: starNebulaA 24s ease-in-out infinite alternate;
}
[data-hero="star-trails"] .hero-nebula--b {
  width: 45vw;
  height: 45vw;
  right: -12vw;
  bottom: -24vw;
  background: rgba(91, 55, 104, .25);
  animation: starNebulaB 30s ease-in-out infinite alternate;
}
[data-hero="star-trails"] .hero-grain { z-index: 3; }
[data-hero="star-trails"] .hero-vignette {
  z-index: 4;
  background:
    radial-gradient(ellipse 72% 64% at 52% 45%, rgba(0, 0, 0, .16), rgba(0, 0, 0, .74) 94%),
    linear-gradient(180deg, rgba(0, 0, 0, .48), transparent 32% 65%, rgba(0, 0, 0, .72));
}
.home-hero__subtitle {
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.85;
}
@keyframes starNebulaA {
  to { transform: translate3d(8vw, 7vh, 0) scale(1.12); opacity: .95; }
}
@keyframes starNebulaB {
  to { transform: translate3d(-8vw, -4vh, 0) scale(.9); opacity: .48; }
}

/* WHY 360: 3×3 퍼즐 */
.strength-grid--puzzle {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  overflow: visible;
}
.puzzle-piece {
  position: relative;
  min-height: 300px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
}
.puzzle-piece::before,
.puzzle-piece::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: #0d0d0d;
}
.puzzle-piece::before { top: -21px; left: calc(50% - 20px); border-bottom-color: transparent; }
.puzzle-piece::after { right: -21px; top: calc(50% - 20px); border-left-color: transparent; }
.puzzle-piece:nth-child(-n+3)::before,
.puzzle-piece:nth-child(3n)::after,
.puzzle-piece--join::before,
.puzzle-piece--join::after { display: none; }
.puzzle-piece h3 { font-size: clamp(29px, 3vw, 44px); }
.puzzle-piece--join {
  border: 2px dashed rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .02);
}
.puzzle-piece--join h3 { color: #fff; }

/* 브랜드 행: 모든 로고는 왼쪽, 이미지는 오른쪽 */
.brand-row,
.brand-row:nth-child(even) {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}
.brand-row:nth-child(even) .brand-row__copy,
.brand-row:nth-child(even) .brand-row__visual { order: initial; }
.brand-row__logo {
  width: 220px;
  height: 70px;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}
.brand-row__copy h3 {
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.28;
}
.brand-site-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 25px;
  padding: 0 20px;
  border: 1px solid #111;
  border-radius: 999px;
  font-weight: 700;
}
.brand-site-link:hover { color: #fff; background: #111; }
.page-title--brands h1 { max-width: 1100px; }

/* 성장 그래프 */
.growth-grid {
  align-items: end;
  padding-top: 100px;
  padding-bottom: 58px;
}
.growth-grid::after { background: #fff; }
.growth-chart-wrap {
  justify-content: flex-end;
  min-height: 610px;
}
.growth-chart-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 24px;
  margin-bottom: 38px;
}
.growth-chart-head span {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}
.growth-chart-head strong {
  grid-row: span 2;
  font: 750 clamp(54px, 7vw, 94px)/.9 Montserrat, sans-serif;
  letter-spacing: -.06em;
}
.growth-chart-head small { font-size: 18px; font-weight: 700; }
.line-chart {
  position: relative;
  height: 380px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .64);
  background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 100% 25%;
}
.line-chart svg {
  position: absolute;
  inset: 0 0 46px;
  width: 100%;
  height: calc(100% - 46px);
  overflow: visible;
}
.growth-area { fill: url("#none"); fill: rgba(255, 255, 255, .045); }
.growth-line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}
.line-chart circle { fill: #050505; stroke: #fff; stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart-label {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .58);
  font: 700 12px Montserrat, sans-serif;
  text-align: center;
}
.chart-label small { display: block; margin-top: 3px; color: #fff; font-size: 11px; }
.chart-label--1 { left: 0; transform: none; }
.chart-label--2 { left: 25%; }
.chart-label--3 { left: 50%; }
.chart-label--4 { left: 75%; }
.chart-label--5 { right: 0; left: auto; transform: none; }
.growth-chart-wrap .chart-note {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

/* PROFESSIONALISM: 클릭 전에도 밝고, 제목과 + 버튼은 한 줄 */
body[data-page="home"] .value-card { min-height: 430px; aspect-ratio: auto; }
body[data-page="home"] .value-card__image {
  filter: brightness(.9) saturate(.92);
  transform: none;
}
body[data-page="home"] .value-card--visual-1 .value-card__image { background-image: url("assets/r11/team-meeting.jpg"); }
body[data-page="home"] .value-card--visual-4 .value-card__image { background-image: url("assets/r11/research-lab.jpg"); }
body[data-page="home"] .value-card__body {
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .02) 64%);
}
body[data-page="home"] .value-card__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}
body[data-page="home"] .value-card h3 {
  max-width: none;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}
body[data-page="home"] .value-card .accordion-button { flex: 0 0 auto; }
body[data-page="home"] .value-card.is-open .value-card__body {
  justify-content: flex-start;
  background: rgba(246, 246, 243, .88);
}

/* 선형 복지 아이콘 */
.benefit-icon {
  display: block;
  width: 66px;
  height: 66px;
  margin-bottom: 34px;
  padding: 14px;
  color: #111;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: transparent;
}

/* 회사소개 */
.company-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.company-value-grid article {
  min-height: 300px;
  padding: 42px 36px;
  border-right: 1px solid var(--line);
}
.company-value-grid article:first-child { border-left: 1px solid var(--line); }
.company-value-grid small { color: #888; font: 700 12px Montserrat, sans-serif; }
.company-value-grid h3 { margin: 48px 0 18px; font-size: clamp(28px, 3vw, 44px); }
.company-value-grid p { margin: 0; color: #5d5d5d; }
.company-history .history-list { border-top: 1px solid #111; }
.company-history .history-list article {
  display: grid;
  grid-template-columns: minmax(130px, .35fr) 1.65fr;
  gap: 54px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.company-history .history-list strong { font: 750 clamp(25px, 3vw, 40px) Montserrat, sans-serif; }
.company-history .history-list h3 { margin: 0 0 8px; font-size: 22px; }
.company-history .history-list p { margin: 0; color: #777; }
.company-direction .section-heading > p { color: rgba(255, 255, 255, .6); }
.company-direction .statement { color: #fff; border-color: rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .06); }
.company-direction .statement p { color: rgba(255, 255, 255, .62); }
.company-gallery {
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr;
  gap: 12px;
  margin-top: 72px;
}
.company-gallery img { width: 100%; height: 390px; object-fit: cover; }

/* CULTURE: 스크롤 스토리 */
.culture-story {
  height: 420vh;
  color: #fff;
  background: #050505;
}
.culture-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.culture-story__sticky > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.35);
  transform: scale(calc(1.04 + var(--culture-progress, 0) * .05));
}
.culture-story__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .36)), rgba(0, 0, 0, calc(.06 + var(--culture-progress, 0) * .24));
}
.culture-story__content { position: relative; height: 100%; }
.culture-story__step {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(980px, 90%);
  opacity: 0;
  transform: translateY(calc(-50% + 34px));
  transition: opacity .65s ease, transform .65s ease;
  pointer-events: none;
}
.culture-story__step.is-active { opacity: 1; transform: translateY(-50%); }
.culture-story__step h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(54px, 7.3vw, 112px);
  line-height: 1.05;
}
.culture-story__step > p:not(.section-kicker) {
  margin: 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.35;
  letter-spacing: -.035em;
}
.culture-story__step strong { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 12px; }
.culture-story__scroll {
  position: absolute;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .62);
  font: 700 10px Montserrat, sans-serif;
  letter-spacing: .16em;
}
.culture-story__scroll i {
  display: block;
  width: 1px;
  height: 36px;
  background: #fff;
  animation: scrollArrow 1.5s ease-in-out infinite;
}
@keyframes scrollArrow { 0%, 100% { opacity: .25; transform: translateY(-5px); } 50% { opacity: 1; transform: translateY(5px); } }
.work-intro { min-height: 76vh; display: flex; align-items: center; }
.work-intro h2 { margin: 20px 0 28px; font-size: clamp(50px, 7vw, 104px); }
.work-intro > .container > p:last-child { color: #666; font-size: 20px; }
.work-detail-list article small { display: block; margin-bottom: 20px; color: rgba(255, 255, 255, .4); font: 700 11px Montserrat, sans-serif; letter-spacing: .08em; }
.talent-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.talent-list p {
  min-height: 210px;
  padding: 32px;
  color: #fff;
  background: #1c1c1c;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.45;
}
.talent-list p span {
  display: block;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, .38);
  font: 700 11px Montserrat, sans-serif;
}
body[data-page="culture"] .talent-list p:hover { color: #111; background: #fff; transform: none; }
body[data-page="culture"] .talent-list p:hover span { color: #777; }

/* TEAM */
.team-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}
.team-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) brightness(.7); }
.team-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .06) 70%); }
.team-hero .container { position: relative; z-index: 1; padding-bottom: 76px; }
.team-hero h1 { max-width: 1050px; font-size: clamp(48px, 7vw, 100px); }
.expertise-groups { border-top: 1px solid #111; }
.expertise-group { display: grid; grid-template-columns: .42fr 1.58fr; gap: 64px; padding: 56px 0; border-bottom: 1px solid var(--line); }
.expertise-group > header { display: flex; gap: 28px; }
.expertise-group > header > span { color: #999; font: 700 12px Montserrat, sans-serif; }
.expertise-group header p { margin: 0 0 13px; font: 700 12px Montserrat, sans-serif; letter-spacing: .08em; }
.expertise-group header h3 { font-size: 27px; line-height: 1.35; }
.expertise-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.expertise-list article { min-height: 230px; padding: 28px; border: 1px solid #d7d7d7; background: #fff; }
.expertise-list small { color: #777; font: 700 11px Montserrat, sans-serif; letter-spacing: .05em; }
.expertise-list h4 { margin: 36px 0 18px; font-size: 21px; line-height: 1.4; }
.expertise-list p { margin: 0; color: #666; font-size: 14px; line-height: 1.7; }
.expertise-list p strong { display: block; margin-bottom: 4px; color: #111; font-size: 12px; }
.people-banner__visual img { min-height: 500px; filter: none; }

/* BENEFITS & WORKPLACE */
.welfare-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}
.welfare-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.72); }
.welfare-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .08)); }
.welfare-hero .container { position: relative; z-index: 1; padding-bottom: 74px; }
.welfare-hero h1 { margin: 12px 0 20px; font-size: clamp(50px, 7vw, 96px); }
.welfare-hero p:last-child { color: rgba(255, 255, 255, .72); font-size: 18px; }
.benefit-groups { padding-top: 40px; }
.benefit-group { padding: 76px 0; border-bottom: 1px solid #111; }
.benefit-group > header {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  margin-bottom: 42px;
}
.benefit-group > header > span { color: #888; font: 700 12px Montserrat, sans-serif; }
.benefit-group header h2 { margin-bottom: 12px; font-size: clamp(32px, 4vw, 54px); }
.benefit-group header p { margin: 0; color: #777; }
.benefit-group .benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  border: 0;
  gap: 10px;
}
.benefit-group .benefit-item {
  min-height: 300px;
  border: 1px solid var(--line);
  background: #fafafa;
}
body[data-page="welfare"] .benefit-group .benefit-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 34px;
  padding: 14px;
  color: #111;
  font-size: inherit;
}
body[data-page="welfare"] .benefit-group .benefit-item h3 {
  color: #111;
  font-size: 20px;
  font-weight: 700;
}
.workplace-gallery { display: grid; grid-template-columns: 1.25fr .85fr .85fr; gap: 12px; }
.workplace-gallery figure { margin: 0; }
.workplace-gallery img { width: 100%; height: 430px; object-fit: cover; }
.workplace-gallery figcaption { padding-top: 12px; color: #777; font: 700 11px Montserrat, sans-serif; letter-spacing: .08em; }

/* NEWS */
.news-featured { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.news-featured__image { aspect-ratio: 880 / 700; }
.news-featured__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px 24px; }
.news-card__image { aspect-ratio: 16 / 10; }

/* CAREERS */
.career-visual--hero { background-image: url("assets/r11/office-workspace.png"); }
.career-visual--join { background-image: url("assets/r11/office-conference.png"); }
.career-visual--cta { background-image: url("assets/r11/office-entrance.png"); }
.career-visual--people { background-image: url("assets/r11/team-meeting.jpg"); }
.coffee-priority-note {
  max-width: 760px;
  margin-top: 18px;
  color: #777 !important;
  font-size: 13px !important;
  line-height: 1.7;
}
.process-overview div small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 500;
}
.process-detail-list h2 small {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #666;
  background: #eee;
  font-size: 11px;
  vertical-align: middle;
}

@media (max-width: 1080px) {
  .strength-grid--puzzle { grid-template-columns: repeat(2, 1fr); }
  .puzzle-piece::before,
  .puzzle-piece::after { display: none; }
  .growth-grid { align-items: stretch; }
  .company-gallery { grid-template-columns: 1fr 1fr; }
  .company-gallery img:first-child { grid-column: 1 / -1; }
  .expertise-group { grid-template-columns: 1fr; gap: 34px; }
  .benefit-group .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .workplace-gallery { grid-template-columns: 1fr 1fr; }
  .workplace-gallery figure:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  [data-hero="star-trails"] .hero-nebula--a { width: 110vw; height: 110vw; top: -35vw; left: -10vw; }
  [data-hero="star-trails"] .hero-nebula--b { width: 90vw; height: 90vw; }
  .home-hero__subtitle br { display: none; }
  .strength-grid--puzzle { grid-template-columns: 1fr; }
  .puzzle-piece { min-height: 250px; }
  .brand-row,
  .brand-row:nth-child(even) { grid-template-columns: 1fr; }
  .brand-row__logo { width: 190px; height: 60px; margin-bottom: 24px; }
  .growth-grid { padding-top: 82px; }
  .growth-chart-wrap { min-height: 480px; }
  .growth-chart-head { grid-template-columns: 1fr; }
  .growth-chart-head strong { grid-row: auto; margin-top: 18px; font-size: 58px; }
  .line-chart { height: 300px; }
  body[data-page="home"] .value-card__top { align-items: center; }
  .company-value-grid { grid-template-columns: 1fr; }
  .company-value-grid article,
  .company-value-grid article:first-child { min-height: 250px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .company-history .history-list article { grid-template-columns: 1fr; gap: 13px; }
  .company-gallery { grid-template-columns: 1fr; }
  .company-gallery img,
  .company-gallery img:first-child { grid-column: auto; height: 280px; }
  .culture-story { height: 360vh; }
  .culture-story__sticky { min-height: 540px; }
  .culture-story__step { width: 92%; }
  .culture-story__step h1 { font-size: clamp(43px, 13vw, 66px); }
  .culture-story__step > p:not(.section-kicker) { font-size: clamp(28px, 8vw, 42px); }
  .work-intro { min-height: 65vh; }
  .talent-list { grid-template-columns: 1fr; }
  .talent-list p { min-height: 175px; }
  .team-hero,
  .welfare-hero { min-height: 590px; }
  .expertise-list { grid-template-columns: 1fr; }
  .expertise-group > header { gap: 18px; }
  .people-banner__visual img { min-height: 340px; }
  .benefit-group > header { grid-template-columns: 1fr; }
  .benefit-group .benefit-grid { grid-template-columns: 1fr; }
  .benefit-group .benefit-item { min-height: 260px; }
  .workplace-gallery { grid-template-columns: 1fr; }
  .workplace-gallery figure:first-child { grid-column: auto; }
  .workplace-gallery img { height: 280px; }
  .news-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-hero="star-trails"] .hero-nebula,
  .culture-story__scroll i { animation: none !important; }
  .culture-story { height: auto; }
  .culture-story__sticky { position: relative; }
  .culture-story__step { display: none; }
  .culture-story__step:first-child { display: block; opacity: 1; transform: translateY(-50%); }
}

/* ============================================================
   12차 수정 — 퍼즐·브랜드·컬처·채용·실사용 이미지
   ============================================================ */

/* WHY 360: 실제로 맞물리는 한 덩어리의 퍼즐 */
.strength-grid--puzzle {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 22px;
}
.puzzle-piece {
  isolation: isolate;
  min-height: 310px;
  padding: 46px 40px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.puzzle-piece::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8%;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: center / 100% 100% no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M10 10H43a12 12 0 1 0 24 0h43v33a12 12 0 1 1 0 24v43H67a12 12 0 1 0-24 0H10V67a12 12 0 1 0 0-24Z' fill='%23131315' stroke='%23383a40' stroke-width='1.2'/%3E%3C/svg%3E");
}
.puzzle-piece::after { display: none; }
.puzzle-piece:nth-child(-n+3)::before,
.puzzle-piece--join::before { display: block; }
.puzzle-piece:nth-child(3n)::after,
.puzzle-piece--join::after { display: none; }
.puzzle-piece--join { border: 0; background: transparent; }
.puzzle-piece--join::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M10 10H43a12 12 0 1 0 24 0h43v33a12 12 0 1 1 0 24v43H67a12 12 0 1 0-24 0H10V67a12 12 0 1 0 0-24Z' fill='%230b0b0d' fill-opacity='.55' stroke='%23e7e7e7' stroke-width='1.6' stroke-dasharray='5 4'/%3E%3C/svg%3E");
}
.puzzle-piece small,
.puzzle-piece h3,
.puzzle-piece p { position: relative; z-index: 1; }
.puzzle-piece h3 { margin-top: 64px; }

/* 브랜드: 고정 로고 열 + 설명/대표 이미지 */
.brand-row,
.brand-row:nth-child(even) {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 58px 0;
}
.brand-row__logo-panel {
  display: flex;
  align-items: center;
  padding-right: 44px;
  border-right: 1px solid var(--line);
}
.brand-row__logo {
  width: 205px;
  height: 76px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}
.brand-row__logo--ourskin { width: 220px; height: 86px; }
.brand-row__logo--defenderm { width: 205px; height: 68px; }
.brand-row__content {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
  padding-left: 48px;
}
.brand-row__copy { order: initial !important; }
.brand-row__copy h3 {
  margin: 0 0 20px;
  font-size: clamp(28px, 2.7vw, 42px);
}
.brand-row__copy p {
  max-width: 600px;
  margin: 0;
  color: #5d5d5d;
  font-size: 16px;
  line-height: 1.82;
}
.brand-row__visual { order: initial !important; border-radius: 14px; }
.brand-row__visual img { aspect-ratio: 16 / 11; }

/* 10차 카드 크기 복원 + 열었을 때만 어두운 설명 레이어 */
body[data-page="home"] .value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
body[data-page="home"] .value-card {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}
body[data-page="home"] .value-card--visual-1 .value-card__image {
  background-image: url("assets/r12/professionalism-collaboration.jpg");
  background-position: center;
}
body[data-page="home"] .value-card--visual-4 .value-card__image {
  background-image: url("assets/r12/professionalism-action.jpg");
  background-position: center;
}
body[data-page="home"] .value-card__image {
  filter: brightness(.93) saturate(.92);
}
body[data-page="home"] .value-card__body {
  justify-content: flex-start;
  padding: 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .02) 62%);
  transition: background .25s ease;
}
body[data-page="home"] .value-card__top { align-items: flex-start; }
body[data-page="home"] .value-card h3 {
  max-width: 230px;
  font-size: clamp(20px, 1.65vw, 25px);
}
body[data-page="home"] .value-card .accordion-button {
  width: 40px;
  height: 40px;
}
body[data-page="home"] .value-card.is-open .value-card__body {
  justify-content: flex-start;
  padding: 24px;
  color: #fff;
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(4px);
}
body[data-page="home"] .value-card.is-open .value-card__image {
  transform: scale(1.035);
  filter: brightness(.68) saturate(.72);
}
body[data-page="home"] .value-card.is-open .accordion-button {
  position: static;
  color: #fff;
  border-color: rgba(255, 255, 255, .75);
  background: transparent;
}
body[data-page="home"] .value-card .accordion-panel {
  margin-top: 18px;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  line-height: 1.62;
}

/* 외부 스프라이트 없이 페이지 안에서 바로 그리는 선형 아이콘 */
.benefit-icon svg { display: block; width: 100%; height: 100%; }

/* 회사·팀 이미지 크롭 */
.story-split__visual--development img { object-position: center 42%; }
.team-hero > img { object-position: center 38%; }
.team-hero .container { padding-bottom: 54px; }
.team-hero .section-kicker { margin-bottom: 12px; }
.expertise-list article { min-height: 330px; }
.expertise-list p strong { margin-top: 14px; }
.expertise-list p strong:first-child { margin-top: 0; }
.people-banner__visual img { object-position: center 25%; }

/* CULTURE: 첫 화면 100vh, 스크롤 양에 비례한 크로스페이드 */
.culture-story { height: 400vh; }
.culture-story__sticky { height: 100svh; min-height: 620px; }
.culture-story__step {
  width: min(940px, 90%);
  opacity: var(--culture-step-opacity, 0);
  transform: translateY(calc(-50% + var(--culture-step-offset, 30px)));
  transition: none;
}
.culture-story__step.is-active {
  opacity: var(--culture-step-opacity, 1);
  transform: translateY(calc(-50% + var(--culture-step-offset, 0px)));
}
.culture-story__step h1,
.culture-story__step h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(50px, 6.6vw, 102px);
  line-height: 1.08;
}
.culture-story__body {
  max-width: 760px;
  margin: 30px 0 0 !important;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 1.45vw, 21px) !important;
  line-height: 1.85 !important;
  letter-spacing: -.015em !important;
}
body[data-page="culture"] .talent-list p:hover,
body[data-page="culture"] .talent-list p:focus-visible,
body[data-page="culture"] .talent-list p.is-active {
  color: #111;
  background: #fff;
  outline: 0;
}
body[data-page="culture"] .talent-list p:hover span,
body[data-page="culture"] .talent-list p:focus-visible span,
body[data-page="culture"] .talent-list p.is-active span { color: #777; }

/* 복지 페이지 길이와 제목 간격 */
.welfare-hero > img { object-position: center 38%; }
.benefit-groups { padding-top: 24px; }
.benefit-group { padding: 50px 0; }
.benefit-group > header {
  display: block;
  margin-bottom: 28px;
}
.benefit-group header h2 { font-size: clamp(30px, 3.5vw, 46px); }
.benefit-group .benefit-item { min-height: 260px; padding: 27px; }
body[data-page="welfare"] .benefit-group .benefit-icon { margin-bottom: 26px; }

/* 채용 실사 이미지·커피챗 간격 */
.career-visual--hero {
  background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url("assets/r12/careers-hero.jpg");
  background-position: center 42%;
}
.career-visual--join {
  background-image: url("assets/r12/careers-join.jpg");
  background-position: center;
}
.career-visual--cta {
  background-image: url("assets/r12/careers-join.jpg");
  background-position: center;
}
.recruit-quick__coffee { align-items: start; }
.recruit-quick__coffee h2 { grid-row: 2 / span 2; }
.recruit-quick__coffee > p:not(.section-kicker) {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .72);
}
.recruit-quick__coffee .recruit-button {
  grid-column: 2;
  margin-top: 0;
}
.recruit-quick > .container > .coffee-priority-note {
  max-width: 840px;
  margin: 16px 0 0;
  color: #8a8a8a !important;
  font-size: 12px !important;
  font-weight: 400;
}

/* 채용 상세 상단: 검은 RECRUIT에서 흰 인재 모집 화면으로 전환 */
.job-recruit-intro { padding-top: var(--header); background: #fff; }
.job-recruit-intro__black {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 42vh;
  overflow: hidden;
  color: #fff;
  background: #030303;
}
.job-recruit-intro__black span {
  position: relative;
  z-index: 1;
  font: 800 clamp(70px, 15vw, 240px)/.8 Montserrat, sans-serif;
  letter-spacing: -.07em;
}
.job-recruit-intro__black i {
  position: absolute;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .018);
}
.job-recruit-intro__white {
  display: flex;
  align-items: center;
  min-height: 58vh;
  color: #111;
  background: #fff;
}
.job-recruit-intro__white p {
  margin-bottom: 22px;
  color: #777;
  font: 700 12px Montserrat, sans-serif;
  letter-spacing: .14em;
}
.job-recruit-intro__white h1 {
  max-width: 1100px;
  margin: 0 0 26px;
  font-size: clamp(48px, 7vw, 108px);
}
.job-recruit-intro__white span { color: #666; font-size: 18px; }

@media (max-width: 1080px) {
  .strength-grid--puzzle { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .puzzle-piece::before,
  .puzzle-piece::after { display: block; }
  .puzzle-piece::after { display: none; }
  .brand-row,
  .brand-row:nth-child(even) { grid-template-columns: 210px minmax(0, 1fr); }
  .brand-row__logo-panel { padding-right: 30px; }
  .brand-row__content { grid-template-columns: 1fr; gap: 30px; padding-left: 34px; }
  .brand-row__visual img { aspect-ratio: 16 / 9; }
  body[data-page="home"] .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .strength-grid--puzzle { grid-template-columns: 1fr; padding: 16px 8px; }
  .puzzle-piece { min-height: 270px; padding: 40px 34px; }
  .puzzle-piece h3 { margin-top: 56px; }
  .brand-row,
  .brand-row:nth-child(even) { grid-template-columns: 1fr; gap: 0; padding: 46px 0; }
  .brand-row__logo-panel {
    min-height: 92px;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brand-row__logo,
  .brand-row__logo--ourskin,
  .brand-row__logo--defenderm { width: 190px; height: 62px; margin: 0; }
  .brand-row__content { grid-template-columns: 1fr; gap: 26px; padding: 28px 0 0; }
  .brand-row__copy p { font-size: 15px; }
  .brand-row__visual img { aspect-ratio: 4 / 3; }
  body[data-page="home"] .value-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .value-card { min-height: 0; aspect-ratio: 1 / 1; }
  .culture-story { height: 380vh; }
  .culture-story__sticky { min-height: 560px; }
  .culture-story__step { width: 94%; }
  .culture-story__step h1,
  .culture-story__step h2 { font-size: clamp(39px, 11vw, 58px); }
  .culture-story__body { max-width: 92%; margin-top: 22px !important; font-size: 15px !important; line-height: 1.72 !important; }
  .culture-story__scroll { bottom: 20px; }
  .expertise-list article { min-height: 0; }
  .team-hero .container { padding-bottom: 42px; }
  .benefit-group { padding: 38px 0; }
  .benefit-group > header { margin-bottom: 22px; }
  .benefit-group .benefit-item { min-height: 230px; }
  .recruit-quick__coffee h2 { margin-bottom: 18px; }
  .recruit-quick__coffee .recruit-button { margin-top: 18px; }
  .job-recruit-intro__black { min-height: 34vh; }
  .job-recruit-intro__white { min-height: 52vh; padding: 70px 0; }
  .job-recruit-intro__white h1 { font-size: clamp(42px, 12vw, 62px); }
  .job-recruit-intro__white span { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .culture-story__step:first-child {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
  }
}

/* ============================================================
   13차 수정 — 맞물리는 퍼즐·실매출 그래프·브랜드 티저·콘텐츠 운영
   ============================================================ */

/* Hero: 별빛은 화면 전체에, 문구 뒤 가독성 보정은 중앙에만 제한 */
[data-hero="star-trails"] .hero-startrails { inset: 0; }
.home-hero__content { isolation: isolate; }
.home-hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(920px, 88vw);
  height: min(430px, 58vh);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(3, 5, 10, .78) 0%, rgba(3, 5, 10, .48) 42%, rgba(3, 5, 10, 0) 76%);
  pointer-events: none;
}

/* WHY 360: 각 이음이 정확히 보완되는 3×3 SVG 퍼즐 */
.strength-grid--puzzle {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 44px 4%;
  overflow: visible;
}
.puzzle-piece,
.puzzle-piece--join {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.puzzle-piece::before,
.puzzle-piece::after { content: none !important; display: none !important; }
.puzzle-piece__shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.puzzle-piece__shape--desktop {
  inset: -15%;
  width: 130%;
  height: 130%;
}
.puzzle-piece__shape--mobile { display: none; }
.puzzle-piece__shape path {
  fill: #131315;
  stroke: #3b3e45;
  stroke-width: 1.05;
  vector-effect: non-scaling-stroke;
}
.puzzle-piece--join .puzzle-piece__shape path {
  fill: #090a0d;
  stroke: rgba(255, 255, 255, .72);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
}
.puzzle-piece__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 44px 38px 38px;
}
.puzzle-piece small,
.puzzle-piece h3,
.puzzle-piece p { position: static; }
.puzzle-piece h3 {
  margin: auto 0 18px;
  font-size: clamp(27px, 2.65vw, 42px);
}
.puzzle-piece p { margin: 0; }

/* 연도별 실제 매출과 검증된 성과 */
.growth-grid {
  grid-template-columns: minmax(300px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 80px;
}
.growth-copy > p { max-width: 560px; }
.growth-achievements {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.growth-achievements article {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.growth-achievements h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 17px;
}
.growth-achievements p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}
.growth-chart-wrap { min-height: 0; }
.growth-chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 26px;
}
.growth-chart-head span { font-size: 18px; font-weight: 750; color: #fff; }
.growth-chart-head small { color: rgba(255, 255, 255, .5); font-size: 12px; font-weight: 500; }
.line-chart--revenue {
  height: 470px;
  padding-bottom: 54px;
  background-size: 100% 20%;
}
.line-chart--revenue svg {
  inset: 0 0 54px;
  height: calc(100% - 54px);
}
.line-chart--revenue .growth-line {
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}
.line-chart--revenue circle {
  fill: #070707;
  stroke: #fff;
  stroke-width: 2;
}
.growth-point {
  position: absolute;
  z-index: 2;
  top: calc(var(--y) * 1%);
  left: calc(var(--x) * 1%);
  display: grid;
  gap: 3px;
  transform: translate(-50%, -112%);
  white-space: nowrap;
  text-align: center;
}
.growth-point strong { color: #fff; font-size: 13px; }
.growth-point small { color: rgba(255, 255, 255, .55); font: 650 11px Montserrat, sans-serif; }
.growth-point:last-child strong { font-size: 16px; }

/* 새 실사 이미지와 회사 방향 카드 */
body[data-page="home"] .value-card--visual-1 .value-card__image {
  background-image: url("assets/r13/professionalism-collaboration-r13.png");
  background-position: center;
}
body[data-page="home"] .value-card--visual-4 .value-card__image {
  background-image: url("assets/r13/professionalism-action-r13.png");
  background-position: center;
}
.story-split__visual--development {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.story-split__visual--development img {
  min-height: 520px;
  object-position: center;
}
.company-direction .statement { min-height: 330px; padding: 42px; }
.company-direction .statement small {
  font-size: 15px;
  letter-spacing: .18em;
}
.company-direction .statement h3 { margin-top: 56px; }
.company-direction .statement p { max-width: 570px; line-height: 1.8; }

/* 공개 브랜드와 내부 출시 준비 브랜드의 안전한 공개 티저 */
.coming-soon {
  color: #fff;
  background: #09090a;
}
.coming-soon .container {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
}
.coming-soon__heading h2 {
  margin: 14px 0 28px;
  font-size: clamp(42px, 5vw, 72px);
}
.coming-soon__heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
}
.coming-soon__heading .button { margin-top: 30px; color: #111; background: #fff; }
.coming-soon__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.coming-soon__card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #171719;
}
.coming-soon__card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(.72) contrast(.94);
}
.coming-soon__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent 42%);
  pointer-events: none;
}
.coming-soon__card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: rgba(255, 255, 255, .86);
  font: 700 11px Montserrat, sans-serif;
  letter-spacing: .12em;
}

/* CULTURE: 질문과 세 문장을 충분한 홀드 구간으로 연속 전개 */
.culture-story { height: 500vh; }
.culture-story__step h1,
.culture-story__step h2 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.14;
}
.culture-story__scroll {
  width: 30px;
  height: 20px;
  opacity: var(--culture-cue-opacity, 1);
  transition: opacity .15s linear;
}
.culture-story__scroll i {
  position: relative;
  display: block;
  width: 30px;
  height: 16px;
  background: none;
  animation: none;
}
.culture-story__scroll i::before,
.culture-story__scroll i::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 19px;
  height: 1px;
  background: rgba(255, 255, 255, .9);
}
.culture-story__scroll i::before { left: 0; transform: rotate(34deg); transform-origin: right center; }
.culture-story__scroll i::after { right: 0; transform: rotate(-34deg); transform-origin: left center; }

/* 팀 제목 간격·간결한 역할 문장·작은 PEOPLE STORY */
.expertise-group header p { margin-bottom: 10px; }
.expertise-group header h3 { margin-top: 0; }
.expertise-list article { min-height: 285px; }
.expertise-list p strong { display: none; }
.people-banner { height: 410px; }
.people-banner__visual,
.people-banner__visual img { height: 100%; min-height: 0; }
.people-banner__visual img { object-position: center 42%; }

/* 채용: 정렬된 카드·안내문·새 실사 */
.career-visual--hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .08)), url("assets/r13/careers-hero-r13.png");
  background-position: center;
}
.career-visual--join,
.career-visual--cta {
  background-image: url("assets/r13/join-360-r13.png");
  background-position: center;
}
.recruit-quick__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.recruit-quick__grid > article,
.recruit-quick__coffee-stack { min-width: 0; }
.recruit-quick__grid > article {
  display: flex;
  flex-direction: column;
}
.recruit-quick__grid > article .recruit-button { margin-top: auto; }
.recruit-quick__coffee-stack {
  grid-column: 1 / -1;
}
.recruit-quick__coffee {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 60px;
  align-items: stretch;
  padding: 48px !important;
}
.recruit-quick__coffee .section-kicker { grid-column: 1 / -1; margin-bottom: 22px; }
.recruit-quick__coffee h2 { grid-column: 1; grid-row: 2 / 4; align-self: end; margin: 0; }
.recruit-quick__coffee > p:not(.section-kicker) { grid-column: 2; grid-row: 2; }
.recruit-quick__coffee .recruit-button { grid-column: 2; grid-row: 3; align-self: end; margin-top: 0; }
.recruit-quick__coffee-stack .coffee-priority-note {
  min-height: 0;
  margin: 12px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}
.job-recruit-image {
  margin: 0 0 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.job-recruit-image img { display: block; width: 100%; height: auto; }

/* NEWS: 검색 가능한 전체 목록 */
.news-section-heading { gap: 30px; }
.news-search {
  display: flex;
  align-items: center;
  min-width: min(360px, 100%);
  border-bottom: 1px solid #111;
}
.news-search input {
  width: 100%;
  min-height: 48px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}
.news-result-count {
  margin: -8px 0 28px;
  color: #777;
  font-size: 13px;
}
.news-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 14px;
  overflow: hidden;
  color: #666;
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-card__image { aspect-ratio: 4 / 3; }
.news-empty { grid-column: 1 / -1; padding: 70px 0; color: #777; text-align: center; }
.news-more { display: flex; justify-content: center; margin-top: 54px; }
.news-more .button[hidden] { display: none; }
[data-news-featured][hidden] { display: none !important; }

@media (max-width: 1080px) and (min-width: 901px) {
  .strength-grid--puzzle { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .puzzle-piece__content { padding: 38px 28px 32px; }
  .puzzle-piece h3 { font-size: 28px; }
  .growth-grid { grid-template-columns: 1fr; }
  .coming-soon .container { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .strength-grid--puzzle {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    margin: 0 auto;
    padding: 30px 12px 54px;
  }
  .puzzle-piece { min-height: 260px; }
  .puzzle-piece__shape--desktop { display: none; }
  .puzzle-piece__shape--mobile {
    inset: 0;
    display: block;
    width: 100%;
    height: 116.667%;
  }
  .puzzle-piece__content { min-height: 260px; padding: 38px 34px 32px; }
  .puzzle-piece h3 { margin: auto 0 16px; }
  .recruit-quick__grid { grid-template-columns: 1fr; }
  .recruit-quick__coffee {
    display: flex;
    flex-direction: column;
    padding: 34px !important;
  }
  .recruit-quick__coffee .section-kicker,
  .recruit-quick__coffee h2,
  .recruit-quick__coffee > p:not(.section-kicker),
  .recruit-quick__coffee .recruit-button { grid-column: auto; grid-row: auto; }
  .recruit-quick__coffee h2 { margin-bottom: 20px; }
  .recruit-quick__coffee .recruit-button { margin-top: 18px; }
}

@media (max-width: 760px) {
  .home-hero__content::before { width: 94vw; height: 48vh; }
  .growth-grid { grid-template-columns: 1fr; gap: 54px; padding-top: 70px; }
  .growth-chart-wrap { min-height: 0; }
  .line-chart--revenue { height: 360px; }
  .growth-point strong { font-size: 11px; }
  .growth-point small { font-size: 9px; }
  .coming-soon .container { grid-template-columns: 1fr; }
  .coming-soon__grid { grid-template-columns: 1fr; }
  .coming-soon__card img { aspect-ratio: 4 / 3; }
  .culture-story { height: 440vh; }
  .culture-story__step h1,
  .culture-story__step h2 { font-size: clamp(37px, 10vw, 54px); }
  .people-banner { height: auto; }
  .people-banner__visual { height: 300px; }
  .people-banner__visual img { min-height: 0; }
  .news-section-heading { align-items: stretch; flex-direction: column; }
  .news-search { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .culture-story { height: auto; }
  .culture-story__sticky { position: relative; }
  .culture-story__step { display: none; }
  .culture-story__step:first-child { display: block; }
  .culture-story__scroll { display: none; }
}

/* ============================================================
   14차 수정 — 공개 브랜드·성장 그래프·컬처·반응형 정리
   ============================================================ */

/* 세 공개 브랜드 뒤에 이어지는 보안형 출시 예고 */
.coming-soon {
  color: #fff;
  background: #09090a;
}
.coming-soon--embedded {
  margin-top: clamp(88px, 10vw, 150px);
  padding: clamp(74px, 8vw, 116px) clamp(22px, 4vw, 54px);
}
.coming-soon .container {
  display: block;
}
.coming-soon__heading {
  max-width: 840px;
  margin: 0 auto clamp(54px, 6vw, 82px);
  text-align: center;
}
.coming-soon__heading h2 {
  margin: 14px 0 28px;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.12;
}
.coming-soon__heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, .65);
  line-height: 1.78;
}
.coming-soon__heading .button {
  margin-top: 30px;
  color: #111;
  background: #fff;
}
.coming-soon__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.coming-soon__brand {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(18px, 2.4vw, 34px);
  min-width: 0;
  min-height: 340px;
  padding: clamp(30px, 3.3vw, 48px);
  overflow: hidden;
  background: #111113;
}
.coming-soon__brand + .coming-soon__brand {
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.coming-soon__masked-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  opacity: .48;
  filter: blur(10px);
  user-select: none;
}
.coming-soon__masked-logo,
.coming-soon__masked-name,
.coming-soon__masked-title i,
.coming-soon__masked-copy i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}
.coming-soon__masked-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.coming-soon__masked-name {
  width: 58%;
  height: 17px;
  margin-top: 18px;
}
.coming-soon__masked-title {
  display: grid;
  gap: 11px;
  margin-top: auto;
}
.coming-soon__masked-title i {
  width: 92%;
  height: 25px;
}
.coming-soon__masked-title i:last-child {
  width: 72%;
}
.coming-soon__masked-copy {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}
.coming-soon__masked-copy i {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, .42);
}
.coming-soon__masked-copy i:nth-child(2) { width: 90%; }
.coming-soon__masked-copy i:nth-child(3) { width: 96%; }
.coming-soon__masked-copy i:nth-child(4) { width: 68%; }
.coming-soon__visual {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #171719;
}
.coming-soon__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, .56);
}
.coming-soon__visual img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transform: scale(1.12);
  filter: blur(22px) saturate(.48) contrast(.9);
}
.coming-soon__status {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 2.7vw, 40px);
  bottom: clamp(22px, 2.7vw, 38px);
  color: rgba(255, 255, 255, .9);
  font: 750 11px Montserrat, sans-serif;
  letter-spacing: .12em;
}

/* 수치 라벨을 걷어낸 10년 성장 흐름 */
.growth-grid {
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 5vw, 74px);
}
.growth-copy h2 {
  font-size: clamp(38px, 3.45vw, 52px);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.growth-copy h2 span {
  display: block;
  white-space: nowrap;
}
.growth-chart-wrap {
  position: relative;
  padding-top: 92px;
}
.growth-message {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  display: grid;
  gap: 7px;
  text-align: right;
}
.growth-message small {
  color: rgba(255, 255, 255, .48);
  font: 700 11px Montserrat, sans-serif;
  letter-spacing: .09em;
}
.growth-message strong {
  color: #fff;
  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1.15;
}
.line-chart--revenue {
  position: relative;
  height: 445px;
  min-height: 0;
  padding-bottom: 46px;
  overflow: visible;
  border: 0;
  background: none;
}
.line-chart--revenue svg {
  inset: 0 0 46px;
  width: 100%;
  height: calc(100% - 46px);
}
.line-chart--revenue path.growth-area {
  fill: url("#growth-area-gradient");
  stroke: none;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}
.line-chart--revenue .growth-line {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}
.line-chart--revenue circle {
  fill: #fff;
  stroke: #fff;
  stroke-width: 1;
}
.growth-years {
  position: absolute;
  right: 1.4%;
  bottom: 0;
  left: 1.4%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  color: rgba(255, 255, 255, .5);
  font: 650 10px Montserrat, sans-serif;
  text-align: center;
}

/* MISSION & VISION의 모든 경계선을 같은 밝기로 통일 */
.company-direction .statement-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}
.company-direction .statement {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, .055);
}
.company-direction .statement[data-reveal] {
  transition: opacity .7s ease, transform .7s ease, background-color .35s ease;
}
.company-direction .statement:hover {
  background: rgba(255, 255, 255, .075);
}

/* 질문 다음에 문장이 한 단락씩 누적되는 컬처 스크롤 */
.culture-story {
  height: 520vh;
}
.culture-story__question,
.culture-story__narrative {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  pointer-events: none;
}
.culture-story__question {
  max-width: 1050px;
  opacity: var(--culture-question-opacity, 1);
  transform: translateY(-50%);
}
.culture-story__question h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 94px);
  line-height: 1.13;
}
.culture-story__narrative {
  display: grid;
  gap: clamp(22px, 3vh, 38px);
  width: min(1180px, calc(100% - 48px));
  opacity: var(--culture-narrative-opacity, 0);
  transform: translateY(calc(-50% + var(--culture-narrative-shift, 78px)));
}
.culture-story__narrative p {
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(29px, 3.25vw, 50px);
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: -.04em;
  opacity: var(--culture-paragraph-opacity, 0);
  transform: translateY(var(--culture-paragraph-offset, 22px));
  transition: opacity .08s linear;
}
.culture-story__narrative strong {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}
.culture-story__scroll {
  bottom: clamp(32px, 4.3vh, 48px);
  right: auto;
  left: 50%;
  justify-content: center;
  opacity: var(--culture-cue-opacity, 1);
  pointer-events: none;
  transform: translateX(-50%);
}
.culture-story__scroll i {
  animation: culture-cue 2.6s ease-in-out infinite;
}
.culture-story__scroll i::before,
.culture-story__scroll i::after {
  height: 1.5px;
}
@keyframes culture-cue {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* 팀 타이틀과 카드 사이의 데스크톱 간격 */
.expertise-group {
  grid-template-columns: .38fr 1.62fr;
  gap: 28px;
}

.job-recruit-image a {
  display: block;
  cursor: zoom-in;
}
.job-recruit-image a:focus-visible {
  outline: 3px solid #111;
  outline-offset: -3px;
}

@media (max-width: 1199px) and (min-width: 761px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }
  .expertise-group {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .coming-soon__grid {
    grid-template-columns: 1fr;
  }
  .coming-soon__brand + .coming-soon__brand {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .growth-copy h2 span {
    white-space: normal;
  }
  .growth-chart-wrap {
    padding-top: 82px;
  }
  .line-chart--revenue {
    height: 330px;
  }
  .growth-years {
    right: 0;
    left: 0;
    font-size: 8px;
  }
  .coming-soon--embedded {
    margin-top: 72px;
    padding-right: 18px;
    padding-left: 18px;
  }
  .coming-soon__heading {
    margin-bottom: 48px;
  }
  .coming-soon__brand {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }
  .coming-soon__masked-content {
    min-height: 250px;
  }
  .coming-soon__visual {
    min-height: 260px;
  }
  .coming-soon__visual img {
    min-height: 260px;
  }
  .culture-story {
    height: 500vh;
  }
  .culture-story__question h1 {
    font-size: clamp(40px, 11.5vw, 58px);
  }
  .culture-story__narrative {
    gap: 20px;
    width: calc(100% - 32px);
  }
  .culture-story__narrative p {
    font-size: clamp(24px, 6.6vw, 36px);
    line-height: 1.32;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .culture-story {
    height: auto;
  }
  .culture-story__sticky {
    position: relative;
    height: auto;
    min-height: 0;
  }
  .culture-story__sticky > img,
  .culture-story__shade {
    position: absolute;
  }
  .culture-story__content {
    display: grid;
    height: auto;
  }
  .culture-story__question,
  .culture-story__narrative {
    position: relative;
    top: auto;
    opacity: 1;
    transform: none;
  }
  .culture-story__question {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 100px 24px;
  }
  .culture-story__narrative {
    padding: 90px 0 120px;
  }
  .culture-story__narrative p {
    opacity: 1;
    transform: none;
  }
  .culture-story__scroll {
    display: none;
  }
}

/* ============================================================
   15차 수정 — 밀도, 익명 브랜드 티저, 컬처·채용 정렬
   ============================================================ */
.strength-grid--puzzle {
  padding-top: 38px;
  padding-bottom: 38px;
}
body[data-page="home"] .strength-grid--puzzle > .puzzle-piece,
body[data-page="home"] .strength-grid--puzzle > .puzzle-piece--join,
.puzzle-piece__content {
  min-height: 296px;
}
body[data-page="home"] .strength-grid--puzzle > .puzzle-piece,
body[data-page="home"] .strength-grid--puzzle > .puzzle-piece--join {
  padding: 0;
}
.puzzle-piece__content {
  padding: 40px 35px 35px;
}
.puzzle-piece h3 {
  margin-bottom: 16px;
}

.brand-row__logo--therapytion {
  width: 206px;
  height: 100px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.coming-soon--embedded {
  margin-top: 0;
  padding: 0;
}
.coming-soon--brand-page {
  padding-top: 0;
  background: #09090a;
}
body[data-page="home"] .brand-list-section,
body[data-page="brands"] .brand-list-section {
  padding-bottom: 0;
}
.coming-soon--brand-page .container {
  display: block;
}
.coming-soon__panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 390px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  background: #101012;
}
.coming-soon__panel--single {
  grid-template-columns: 1fr;
}
.coming-soon__preview[hidden] {
  display: none;
}
.coming-soon__preview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(150px, .92fr);
  gap: clamp(18px, 2vw, 30px);
  min-width: 0;
  padding: clamp(30px, 3vw, 44px);
}
.coming-soon__preview + .coming-soon__preview {
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.coming-soon__preview--care {
  grid-template-columns: minmax(0, .92fr) minmax(160px, 1.08fr);
  background: #141214;
}
.coming-soon__mock-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.coming-soon__mock-logo,
.coming-soon__mock-name,
.coming-soon__mock-title i,
.coming-soon__mock-body i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}
.coming-soon__mock-logo {
  width: 52%;
  height: 18px;
}
.coming-soon__preview--care .coming-soon__mock-logo {
  width: 42%;
  height: 24px;
  border-radius: 8px;
}
.coming-soon__mock-name {
  width: 32%;
  height: 9px;
  margin-top: 16px;
  opacity: .45;
}
.coming-soon__mock-title {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.coming-soon__mock-title i {
  width: 92%;
  height: 22px;
}
.coming-soon__mock-title i:last-child {
  width: 68%;
}
.coming-soon__preview--care .coming-soon__mock-title i {
  width: 78%;
  height: 28px;
}
.coming-soon__mock-body {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.coming-soon__mock-body i {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, .4);
}
.coming-soon__mock-body i:nth-child(2) { width: 88%; }
.coming-soon__mock-body i:nth-child(3) { width: 94%; }
.coming-soon__mock-body i:nth-child(4) { width: 62%; }
.coming-soon__mock-visual {
  min-width: 0;
  overflow: hidden;
  background: #1a1a1c;
}
.coming-soon__mock-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.coming-soon__preview--lifestyle .coming-soon__mock-visual img {
  object-position: 42% center;
}
.coming-soon__preview--care .coming-soon__mock-visual img {
  object-position: 68% center;
}
.coming-soon__veil {
  position: absolute;
  z-index: 2;
  inset: -12%;
  background:
    linear-gradient(128deg, rgba(3, 3, 4, .72) 8%, rgba(7, 7, 8, .4) 48%, rgba(3, 3, 4, .78) 92%),
    linear-gradient(15deg, transparent 26%, rgba(0, 0, 0, .44) 26% 58%, transparent 58%);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  pointer-events: none;
}
.coming-soon__overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  pointer-events: none;
}
.coming-soon__overlay h2 {
  margin: 0;
  color: #fff;
  font: 800 clamp(40px, 5vw, 70px) Montserrat, sans-serif;
  letter-spacing: .05em;
}
.coming-soon__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(15px, 1.4vw, 19px);
}
.coming-soon--brand-page .coming-soon__heading {
  max-width: 820px;
  margin: clamp(54px, 6vw, 80px) auto 0;
  text-align: center;
}
.coming-soon--brand-page .coming-soon__heading > p:not(.section-kicker) {
  font-size: 18px;
  line-height: 1.85;
}

.growth-message {
  right: auto;
  left: 3%;
  text-align: left;
}
.growth-points {
  position: absolute;
  inset: 0 0 46px;
  pointer-events: none;
}
.growth-point {
  top: calc(var(--y) * 1%);
  transform: translate(-50%, -140%);
}
.growth-point:first-child {
  transform: translate(-18%, -140%);
}
.growth-point:last-child {
  transform: translate(-82%, -140%);
}

.culture-story {
  height: 420vh;
}
.culture-question__accent {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}
.culture-story__narrative {
  gap: clamp(18px, 2.4vh, 30px);
  width: min(1120px, calc(100% - 48px));
}
.culture-story__narrative p {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 560;
  line-height: 1.45;
}
.work-detail-list li + li {
  margin-top: 24px;
}
.work-detail-list li strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}
.work-detail-list li span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.7;
}
.talent-list p {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 54px 32px 32px;
  text-align: center;
  transform: none !important;
}
.talent-list p .talent-number {
  position: absolute;
  top: 26px;
  left: 28px;
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font: 700 26px Montserrat, sans-serif;
  line-height: 1;
}
.talent-list p .talent-copy {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
}
body[data-page="culture"] .talent-list p:hover,
body[data-page="culture"] .talent-list p:focus-visible,
body[data-page="culture"] .talent-list p.is-active {
  transform: none !important;
}
body[data-page="culture"] .talent-list p:hover .talent-number,
body[data-page="culture"] .talent-list p:focus-visible .talent-number,
body[data-page="culture"] .talent-list p.is-active .talent-number {
  color: #777;
}

.expertise-list article {
  min-height: 260px;
  padding: 25px;
}
.expertise-list h4 {
  margin: 20px 0 12px;
}

.process-overview .process-overview__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.process-overview .process-overview__stack > span {
  font-size: inherit;
  line-height: 1.25;
}
.process-overview .process-overview__stack > small {
  display: block;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .1);
  font-size: 10px;
  line-height: 1;
}
.process-detail-list article:has(.process-detail-heading) {
  grid-template-columns: 290px 1fr;
}
.process-detail-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.process-detail-heading > span {
  color: #09995b;
  font: 750 28px Montserrat, sans-serif;
}
.process-title-stack {
  display: grid;
  gap: 7px;
}
.process-title-stack b {
  font: inherit;
}
.process-title-stack small {
  width: max-content;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  color: #666;
  background: #eee;
  font-size: 11px;
}

@media (max-width: 1120px) {
  .coming-soon__panel {
    min-height: 360px;
  }
  .coming-soon__preview {
    grid-template-columns: minmax(0, 1fr) minmax(130px, .86fr);
    padding: 30px;
  }
  .coming-soon__preview--care {
    grid-template-columns: minmax(0, .86fr) minmax(140px, 1fr);
  }
}

@media (max-width: 900px) {
  .strength-grid--puzzle {
    padding-top: 26px;
    padding-bottom: 48px;
  }
  body[data-page="home"] .strength-grid--puzzle > .puzzle-piece,
  body[data-page="home"] .strength-grid--puzzle > .puzzle-piece--join,
  .puzzle-piece__content {
    min-height: 246px;
  }
  .puzzle-piece__content {
    padding: 36px 32px 30px;
  }
  .coming-soon__panel {
    grid-template-columns: 1fr;
  }
  .coming-soon__preview + .coming-soon__preview {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }
  .process-detail-list article:has(.process-detail-heading) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand-row__logo--therapytion {
    width: 205px;
    height: 98px;
  }
  .coming-soon--embedded {
    margin-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .coming-soon__panel {
    min-height: 0;
  }
  .coming-soon__preview,
  .coming-soon__preview--care {
    grid-template-columns: minmax(0, .95fr) minmax(120px, 1.05fr);
    min-height: 280px;
    padding: 24px;
  }
  .coming-soon__mock-visual img {
    min-height: 232px;
  }
  .coming-soon__mock-title i {
    height: 17px;
  }
  .coming-soon__overlay h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .coming-soon__overlay p {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }
  .coming-soon--brand-page .coming-soon__heading > p:not(.section-kicker) {
    font-size: 16px;
  }
  .growth-message {
    left: 0;
  }
  .growth-point strong {
    font-size: 10px;
  }
  .growth-point:last-child strong {
    font-size: 11px;
  }
  .culture-story {
    height: 400vh;
  }
  .culture-story__narrative {
    gap: 18px;
    width: calc(100% - 32px);
  }
  .culture-story__narrative p {
    font-size: clamp(21px, 5.8vw, 28px);
    line-height: 1.45;
  }
  .talent-list p {
    min-height: 180px;
    padding: 50px 24px 28px;
  }
  .talent-list p .talent-number {
    top: 22px;
    left: 22px;
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .culture-story {
    height: auto;
  }
}

/* ============================================================
   16차 수정 — 퍼즐 안전영역·브랜드 티저·컬처·채용 정렬
   ============================================================ */

/* WHY 360: SVG 맞물림은 유지하고 조각별 홈·돌출부에 맞춰 안전영역을 분리한다. */
.strength-grid--puzzle [data-puzzle-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .52s ease, transform .52s ease;
  will-change: opacity, transform;
}
.strength-grid--puzzle [data-puzzle-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.strength-grid--puzzle [data-puzzle-reveal].is-settled {
  transition: none;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(1) .puzzle-piece__content {
  padding: 42px 58px 54px 38px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(2) .puzzle-piece__content {
  padding: 42px 58px 54px 50px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(3) .puzzle-piece__content {
  padding: 42px 40px 54px 56px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(4) .puzzle-piece__content {
  padding: 58px 54px 50px 38px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(5) .puzzle-piece__content {
  padding: 58px 56px 54px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(6) .puzzle-piece__content {
  padding: 58px 38px 54px 56px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(7) .puzzle-piece__content {
  padding: 58px 56px 38px 38px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(8) .puzzle-piece__content {
  padding: 58px 58px 38px 56px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(9) .puzzle-piece__content {
  padding: 58px 38px 38px 56px;
}
.strength-grid--puzzle > .puzzle-piece:nth-child(2) h3,
.strength-grid--puzzle > .puzzle-piece:nth-child(6) h3,
.strength-grid--puzzle > .puzzle-piece:nth-child(8) h3 {
  max-width: 92%;
  font-size: clamp(26px, 2.45vw, 39px);
}

/* COMING SOON: 공개 브랜드 목록의 흰색 마지막 행으로 연결한다. */
.coming-soon,
.coming-soon--brand-page {
  color: #111;
  background: #fff;
}
.coming-soon__panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #111;
  background: #f5f5f3;
}
.coming-soon__preview {
  background: #f3f3f1;
}
.coming-soon__preview + .coming-soon__preview {
  border-color: var(--line);
}
.coming-soon__preview--care {
  background: #efefec;
}
.coming-soon__mock-logo,
.coming-soon__mock-name,
.coming-soon__mock-title i,
.coming-soon__mock-body i {
  background: rgba(16, 16, 16, .58);
}
.coming-soon__mock-body i {
  background: rgba(16, 16, 16, .34);
}
.coming-soon__mock-visual {
  background: #e8e8e5;
}
.coming-soon__veil {
  inset: 0;
  background: rgba(248, 248, 246, .46);
  -webkit-backdrop-filter: blur(11.5px) saturate(.64);
  backdrop-filter: blur(11.5px) saturate(.64);
}
.coming-soon__overlay h2 {
  color: #111;
}
.coming-soon__overlay p {
  color: rgba(17, 17, 17, .68);
}
.coming-soon--brand-page .coming-soon__heading {
  color: #111;
}
.coming-soon--brand-page .coming-soon__heading .button {
  color: #fff;
  background: #111;
}

/* GROWTH: 기간 라벨을 제거하고 성과 문구와 마지막 지점을 계층화한다. */
.growth-message {
  top: 2px;
  left: 3%;
}
.growth-message strong {
  display: grid;
  gap: 2px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
}
.growth-message strong span {
  font-size: clamp(25px, 2.4vw, 38px);
}
.growth-message strong em {
  font-style: normal;
  font-size: clamp(38px, 3.8vw, 60px);
}
.growth-point:last-child strong {
  color: #fff;
  font-size: 19px;
  font-weight: 850;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .22);
}
.line-chart--revenue .growth-final-circle {
  fill: #fff;
  stroke: rgba(255, 255, 255, .42);
  stroke-width: 5;
}

/* PROFESSIONALISM: 1~3번만 16차 검수 자산으로 교체한다. */
body[data-page="home"] .value-card--visual-1 .value-card__image {
  background-image: url("assets/generated/professionalism-1-v16.png");
  background-position: center;
}
body[data-page="home"] .value-card--visual-2 .value-card__image {
  background-image: url("assets/generated/professionalism-2-v16.png");
  background-position: center;
}
body[data-page="home"] .value-card--visual-3 .value-card__image {
  background-image: url("assets/generated/professionalism-3-v16.png");
  background-position: center;
}

/* 컬처 누적 전개: 실제 이동거리 320vh → 260vh(-18.75%). */
.culture-story {
  height: 360vh;
}
.culture-story__narrative p:nth-child(n+2) {
  font-size: clamp(24px, 2.3vw, 35px);
  font-weight: 520;
}
.culture-story__scroll i {
  position: relative;
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 16px;
  border: 0;
  background: none;
}
.culture-story__scroll {
  width: 40px;
  height: 16px;
}
.culture-story__scroll i::before,
.culture-story__scroll i::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 20px;
  height: 1.5px;
  border: 0;
  background: rgba(255, 255, 255, .88);
}
.culture-story__scroll i::before {
  right: 50%;
  left: auto;
  transform: rotate(27deg);
  transform-origin: right center;
}
.culture-story__scroll i::after {
  right: auto;
  left: 50%;
  transform: rotate(-27deg);
  transform-origin: left center;
}
body[data-page="culture"] .talent-list p {
  color: rgba(255, 255, 255, .72);
  background: #222;
}
body[data-page="culture"] .talent-list p .talent-number {
  color: rgba(255, 255, 255, .42);
}
body[data-page="culture"] .talent-list p .talent-copy {
  color: rgba(255, 255, 255, .72);
  font: inherit;
}
body[data-page="culture"] .talent-list p:hover,
body[data-page="culture"] .talent-list p:focus-visible,
body[data-page="culture"] .talent-list p.is-active {
  color: #111;
  background: #fff;
}
body[data-page="culture"] .talent-list p:hover .talent-copy,
body[data-page="culture"] .talent-list p:focus-visible .talent-copy,
body[data-page="culture"] .talent-list p.is-active .talent-copy {
  color: #111;
}

/* 채용 프로세스: 제목 중앙선과 보조 배지의 기준을 분리한다. */
.process-overview .process-overview__stack {
  position: relative;
  display: grid;
  place-items: center;
}
.process-overview .process-overview__stack > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: inherit;
  line-height: 1.25;
}
.process-overview .process-overview__stack > small {
  position: absolute;
  top: calc(50% + 25px);
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}
.process-detail-list article.process-detail--optional:has(.process-detail-heading) {
  grid-template-columns: 290px minmax(0, 1fr) auto;
  align-items: start;
}
.process-detail-heading {
  align-items: baseline;
}
.process-detail-heading h2 {
  min-width: 0;
}
.process-optional {
  justify-self: end;
  align-self: start;
  margin-top: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #666;
  background: #eee;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1080px) and (min-width: 901px) {
  .strength-grid--puzzle > .puzzle-piece .puzzle-piece__content {
    padding-right: 36px;
    padding-left: 36px;
  }
  .strength-grid--puzzle > .puzzle-piece:nth-child(2) h3,
  .strength-grid--puzzle > .puzzle-piece:nth-child(6) h3,
  .strength-grid--puzzle > .puzzle-piece:nth-child(8) h3 {
    max-width: none;
    font-size: 27px;
  }
}

@media (max-width: 900px) {
  .strength-grid--puzzle > .puzzle-piece .puzzle-piece__content {
    min-height: 246px;
    padding: 52px 38px 46px;
  }
  .strength-grid--puzzle > .puzzle-piece:nth-child(9) .puzzle-piece__content {
    padding-bottom: 34px;
  }
  .strength-grid--puzzle > .puzzle-piece:nth-child(2) h3,
  .strength-grid--puzzle > .puzzle-piece:nth-child(6) h3,
  .strength-grid--puzzle > .puzzle-piece:nth-child(8) h3 {
    max-width: none;
    font-size: clamp(27px, 7.2vw, 38px);
  }
  .process-detail-list article.process-detail--optional:has(.process-detail-heading) {
    grid-template-columns: 1fr;
  }
  .process-optional {
    justify-self: start;
    margin-top: -8px;
  }
}

@media (max-width: 760px) {
  .culture-story {
    height: 350vh;
  }
  .culture-story__narrative p:nth-child(n+2) {
    font-size: clamp(19px, 5.25vw, 25.5px);
  }
  .growth-message strong span {
    font-size: 24px;
  }
  .growth-message strong em {
    font-size: 38px;
  }
  .growth-point:last-child strong {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strength-grid--puzzle [data-puzzle-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .culture-story__scroll i {
    animation: none;
  }
}

/* ============================================================
   17차 수정 — 회귀 복구와 정적 fallback
   ============================================================ */

/* COMING SOON 패널은 흰 목록에 두고, 안내 CTA만 별도 검은 블록으로 분리한다. */
.coming-soon--brand-page .coming-soon__heading {
  max-width: none;
  margin: 0;
  padding: clamp(64px, 7vw, 96px) clamp(24px, 5vw, 72px);
  color: #fff;
  background: #09090a;
  text-align: center;
}
.coming-soon--brand-page .coming-soon__heading h2 {
  margin-top: 0;
  color: #fff;
}
.coming-soon--brand-page .coming-soon__heading > p:not(.section-kicker) {
  color: rgba(255, 255, 255, .8);
}
.coming-soon--brand-page .coming-soon__heading .button {
  border: 1px solid #fff;
  color: #111;
  background: #fff;
}
.coming-soon--brand-page .coming-soon__heading .button:hover,
.coming-soon--brand-page .coming-soon__heading .button:focus-visible {
  border-color: #d9d9d9;
  color: #111;
  background: #f2f2f2;
  outline: 3px solid rgba(255, 255, 255, .55);
  outline-offset: 4px;
}

/* 첫 항목을 포함한 네 인재상은 초기 상태에서 같은 명도와 배경을 사용한다. */
body[data-page="culture"] .talent-list p .talent-copy {
  color: rgba(255, 255, 255, .72);
}
body[data-page="culture"] .talent-list p:hover .talent-number,
body[data-page="culture"] .talent-list p:focus-visible .talent-number,
body[data-page="culture"] .talent-list p.is-active .talent-number {
  color: #777;
}

/* 실제 뉴스가 없을 때만 중립 로고 fallback을 사용한다. */
.news-featured__image img.is-fallback,
.news-card__image img.is-fallback {
  padding: clamp(28px, 6vw, 72px);
  object-fit: contain;
  background: #f1f1ef;
}

@media (max-width: 760px) {
  .coming-soon--brand-page .coming-soon__heading {
    padding: 58px 22px 64px;
  }
  .coming-soon--brand-page .coming-soon__heading > p:not(.section-kicker) {
    font-size: 16px;
  }
}

/* ============================================================
   커피챗 안내와 신청서
   ============================================================ */
.coffee-detail-head { padding: 50px 0 48px; background: #fff; }
.coffee-detail-head__inner { align-items: center; }
.coffee-detail-head .section-kicker { margin-bottom: 13px; }
.coffee-detail-head h1 { max-width: 780px; margin: 0 0 14px; font-size: clamp(36px,3.8vw,52px); letter-spacing: -.045em; line-height: 1.15; }
.coffee-detail-head h1 span { display: inline-block; margin-right: 7px; font-size: .72em; filter: grayscale(1); }
.coffee-detail-head__summary { max-width: 700px; margin: 0; color: #555; font-size: 16px; }
.coffee-detail-head__meta { display: flex; flex-wrap: wrap; gap: 8px 0; margin: 12px 0 0 !important; color: #777 !important; font-size: 13px !important; }
.coffee-detail-head__meta span { display: inline-flex; align-items: center; white-space: nowrap; }
.coffee-detail-head__meta span + span::before { width: 1px; height: 11px; margin: 0 12px; background: #c9c9c4; content: ""; }
.coffee-article--public > section { position: relative; display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 28px; padding: 50px 0; }
.coffee-section-content { min-width: 0; }
.coffee-section-content > :last-child { margin-bottom: 0; }
.coffee-article--public h2 { max-width: 760px; margin-bottom: 26px; font-size: clamp(34px,3.6vw,44px); line-height: 1.22; }
.coffee-article--public h3 { margin-bottom: 24px; font-size: clamp(26px,2.6vw,32px); line-height: 1.3; }
.coffee-article--public p { max-width: 820px; color: #484844; font-size: 16px; line-height: 1.78; }
.coffee-section-number { display: block; margin-top: 8px; color: #7f7f79; font: 800 12px/1 Montserrat,sans-serif; letter-spacing: .15em; }
.coffee-topic-list { margin: 0; padding: 0 !important; border-top: 1px solid var(--line); list-style: none; }
.coffee-topic-list li { position: relative; margin: 0 !important; padding: 16px 16px 16px 30px; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.65; }
.coffee-topic-list li::before { position: absolute; top: 25px; left: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); content: ""; }
.coffee-note { margin-top: 24px; padding: 18px 21px; border-left: 3px solid var(--ink); background: var(--paper); color: #4f4f4b !important; font-size: 14px !important; line-height: 1.7 !important; }
.coffee-detail-list--public { margin: 0; border-top: 1px solid var(--line); }
.coffee-detail-list--public div { display: grid; grid-template-columns: 136px 1fr; gap: 22px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.coffee-detail-list--public dt { color: #767670; font-weight: 650; }
.coffee-detail-list--public dd { margin: 0; }
.coffee-step-list { display: grid; margin: 0; padding: 0 !important; border-top: 1px solid var(--line); list-style: none; }
.coffee-step-list li { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 14px; align-items: center; min-height: 0; margin: 0 !important; padding: 16px 0; border-bottom: 1px solid var(--line); background: transparent; }
.coffee-step-list span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: var(--ink); font: 700 11px Montserrat,sans-serif; }
.coffee-step-list p { margin: 0; font-size: 15px !important; line-height: 1.65; }
.coffee-article--public .coffee-tip { margin-top: 20px; color: #6e6e68; font-size: 14px; }
.coffee-article--public .coffee-tip::before { margin-right: 8px; color: var(--ink); font-weight: 800; content: "TIP"; }
.coffee-article--public .coffee-article__apply > div p { margin: 7px 0 0; color: #777771; font-size: 14px; }

.coffee-application-page { min-height: 100vh; background: #f2f2ef; }
.application-container { width: min(calc(100% - 64px),1180px); margin: 0 auto; }
.application-heading { padding: 58px 0 50px; color: #fff; background: #0a0a0a; }
.application-back { display: inline-block; margin-bottom: 36px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }
.application-heading h1, .application-complete h1 { margin-bottom: 16px; font-size: clamp(46px,5.4vw,68px); }
.application-heading > div > p:not(.section-kicker) { max-width: 820px; margin-bottom: 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.65; }
.application-heading > div > p strong { color: #fff; }
.application-preview-notice { display: grid; grid-template-columns: 132px minmax(0,1fr); gap: 18px; max-width: 1020px; margin-top: 28px; padding: 16px 19px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.65; }
.application-preview-notice strong { color: #fff; }
.application-layout { display: grid; grid-template-columns: minmax(0,820px) 290px; gap: 42px; align-items: start; padding-top: 58px; padding-bottom: 168px; }
.application-form { display: grid; gap: 20px; }
.application-section { padding: 38px; border: 1px solid #deded8; border-radius: 12px; background: #fff; }
.application-section__heading { display: grid; gap: 9px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.application-section__title { display: flex; align-items: baseline; gap: 15px; }
.application-section__title > span { flex: 0 0 42px; color: #7f7f79; font: 800 12px Montserrat,sans-serif; letter-spacing: .12em; }
.application-section__heading h2 { margin: 0; font-size: 28px; line-height: 1.28; }
.application-section__heading > p { margin: 0 0 0 57px; color: #6f6f69; font-size: 13px; line-height: 1.55; }
.application-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; }
.application-field--full { grid-column: 1/-1; }
.application-form .form-field { display: grid; gap: 8px; }
.application-form .form-field + .form-field { margin-top: 20px; }
.application-field-grid .form-field + .form-field { margin-top: 0; }
.application-form .form-field label, .application-file > label { display: inline-flex; align-items: center; gap: 7px; width: max-content; max-width: 100%; font-size: 14px; font-weight: 750; line-height: 1.4; word-break: keep-all; }
.application-form label strong, .application-form label em { display: inline-flex; flex: 0 0 auto; align-items: center; min-height: 19px; margin: 0; padding: 1px 6px; border-radius: 999px; font-size: 10px; font-style: normal; line-height: 1.4; white-space: nowrap; }
.application-form label strong { color: #111; background: #ecece8; }
.application-form label em { border: 1px solid #d8d8d2; color: #6d6d67; background: #fff; }
.application-form .form-field input, .application-form .form-field select, .application-form .form-field textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid #cfcfca; border-radius: 7px; background: #fff; outline: none; font-size: 15px; line-height: 1.55; }
.application-form .form-field input::placeholder, .application-form .form-field textarea::placeholder { color: #969690; opacity: 1; }
.application-form .form-field textarea { min-height: 150px; resize: vertical; }
.application-form .form-field input:focus, .application-form .form-field select:focus, .application-form .form-field textarea:focus, .application-file:focus-within > div { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,.07); }
.application-form .form-field > small:not(.field-error) { color: #74746e; font-size: 12px; line-height: 1.5; word-break: keep-all; }
.field-error { min-height: 17px; color: #bf2f2f; font-size: 12px; line-height: 1.45; }
[data-progress-key].has-error input, [data-progress-key].has-error select, [data-progress-key].has-error textarea, [data-progress-key].has-error .application-file > div, [data-progress-key].has-error.consent-card { border-color: #bf2f2f; }
.application-file { position: relative; display: grid; gap: 9px; }
.application-file input[type="file"] { position: absolute; left: 0; bottom: 0; width: 100%; height: 64px; cursor: pointer; opacity: 0; }
.application-file > div { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 14px; min-height: 64px; padding: 12px 15px; border: 1px dashed #b9b9b3; border-radius: 7px; background: #f8f8f6; }
.application-file__action { font-size: 14px; font-weight: 750; white-space: nowrap; }
.application-file > div small { min-width: 0; overflow: hidden; color: #73736d; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.application-file__meta { padding: 3px 7px; border-radius: 999px; color: #666660; background: #e9e9e5; font-size: 10px; font-weight: 700; white-space: nowrap; }
.application-optional-group { display: grid; gap: 22px; margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.application-consents { display: grid; gap: 14px; }
.application-consents .application-section__heading { margin-bottom: 18px; }
.consent-card { border: 1px solid #d3d3cd; border-radius: 8px; background: #fff; }
.consent-card__summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; }
.consent-card__summary label { display: flex; min-width: 0; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 14px; line-height: 1.55; }
.consent-card__summary label > span { min-width: 0; word-break: keep-all; }
.consent-card__summary label > span strong { white-space: nowrap; }
.consent-card__summary input { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; accent-color: #111; }
.consent-card__summary button { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 6px; padding: 3px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; color: #5e5e59; font-size: 12px; white-space: nowrap; }
.consent-card__summary button::after { display: inline-block; font-size: 13px; line-height: 1; transition: transform .2s ease; content: "⌄"; }
.consent-card__summary button[aria-expanded="true"]::after { transform: rotate(180deg); }
.consent-card__body { margin: 0 20px 20px; padding: 22px; border-radius: 6px; background: #f4f4f1; color: #555550; font-size: 13.5px; line-height: 1.75; }
.consent-card__body p:last-child { margin-bottom: 0; }
.consent-card__body dl { margin: 18px 0; border-top: 1px solid #d8d8d2; }
.consent-card__body dl div { display: grid; grid-template-columns: 160px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid #d8d8d2; }
.consent-card__body dt { color: #222; font-weight: 750; }
.consent-card__body dd { margin: 0; }
.consent-card > .field-error { display: block; padding: 0 20px 16px; }
.application-contact { margin: 8px 0 0; color: #696964; font-size: 13px; line-height: 1.6; }
.application-contact a { color: #111; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.application-progress-card { position: sticky; top: calc(var(--header) + 24px); padding: 26px; border: 1px solid #d8d8d2; border-radius: 12px; background: #fff; }
.application-progress-card__count { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.application-progress-card__count strong { font: 750 30px Montserrat,sans-serif; }
.application-progress-card__count span { color: #767670; font-size: 12px; }
[data-progress-bar] { position: relative; display: block; width: 100%; height: 4px; overflow: hidden; border-radius: 999px; background: #deded8; }
[data-progress-bar]::after { position: absolute; inset: 0; width: var(--application-progress,0%); background: #111; transition: width .25s ease; content: ""; }
.application-progress-card ol { display: grid; gap: 0; margin: 22px 0 0; padding: 0; list-style: none; }
.application-progress-card li { display: grid; grid-template-columns: 12px minmax(0,1fr) auto; gap: 9px; align-items: center; min-height: 40px; padding: 8px 0; border-bottom: 1px solid #ededeb; color: #74746f; font-size: 12.5px; }
.application-progress-card li > span { width: 8px; height: 8px; border: 1px solid #999992; border-radius: 50%; }
.application-progress-card li b { min-width: 0; overflow: hidden; font-weight: inherit; text-overflow: ellipsis; white-space: nowrap; }
.application-progress-card li small { color: #999992; font-size: 10px; white-space: nowrap; }
.application-progress-card li.is-complete { color: #111; font-weight: 700; }
.application-progress-card li.is-complete > span { border-color: #111; background: #111; }
.application-progress-card li.is-current { color: #111; }
.application-progress-card li.is-current > span { box-shadow: 0 0 0 4px rgba(0,0,0,.1); }
.application-mobile-progress { display: none; }
.application-submit-bar { position: fixed; z-index: 900; right: 0; bottom: 0; left: 0; border-top: 1px solid #d8d8d2; background: rgba(255,255,255,.96); box-shadow: 0 -10px 30px rgba(0,0,0,.06); backdrop-filter: blur(12px); }
.application-submit-bar > div { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 86px; padding-top: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
.application-submit-bar p { margin: 0; color: #6f6f69; font-size: 13px; }
.application-submit-bar .apply-button { min-width: 230px; white-space: nowrap; }
.application-submit-bar button:disabled { cursor: wait; opacity: .58; }
.application-form-status { min-height: 26px; color: #a22a2a; font-size: 14px; }
.application-honeypot { position: absolute; left: -9999px; }
.application-complete { min-height: calc(100vh - var(--header)); display: grid; place-items: center; padding: 110px 0; background: #fff; text-align: center; }
.application-complete[hidden] { display: none; }
.application-complete > div { max-width: 820px; }
.application-complete p:not(.section-kicker) { color: #666; font-size: 18px; }
.application-complete > div > div { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }

@media (max-width: 1024px) {
  .coffee-detail-head__inner { align-items: flex-start; flex-direction: column; }
  .application-layout { grid-template-columns: 1fr; max-width: 820px; }
  .application-progress-card { display: none; }
  .application-mobile-progress { display: block; margin-top: 24px; padding: 16px 19px; border: 1px solid #d8d8d2; border-radius: 9px; background: #fff; }
  .application-mobile-progress > div { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 13px; }
}

@media (max-width: 760px) {
  .narrow-container, .application-container { width: min(calc(100% - 36px),1180px); }
  .coffee-detail-head { padding: 34px 0; }
  .coffee-detail-head h1 { font-size: clamp(32px,9vw,42px); }
  .coffee-detail-head__summary { font-size: 15px; line-height: 1.65; }
  .coffee-detail-head__meta { font-size: 12px !important; }
  .coffee-detail-head .job-posting-head__actions { width: 100%; }
  .coffee-detail-head .apply-button { flex: 1 1 auto; }
  .coffee-article--public > section { grid-template-columns: 1fr; gap: 12px; padding: 38px 0; }
  .coffee-section-number { margin-top: 0; }
  .coffee-article--public h2 { margin-bottom: 22px; font-size: 30px; }
  .coffee-article--public h3 { margin-bottom: 20px; font-size: 24px; }
  .coffee-article--public p, .coffee-topic-list li { font-size: 15px; }
  .coffee-detail-list--public div { grid-template-columns: 1fr; gap: 5px; }
  .coffee-article--public .coffee-article__apply { align-items: stretch; flex-direction: column; }
  .application-heading { padding: 38px 0 34px; }
  .application-back { margin-bottom: 28px; }
  .application-heading h1, .application-complete h1 { font-size: clamp(40px,11vw,52px); }
  .application-heading > div > p:not(.section-kicker) { font-size: 15px; }
  .application-preview-notice { grid-template-columns: 1fr; gap: 4px; margin-top: 22px; padding: 15px 16px; }
  .application-layout { gap: 0; padding-top: 28px; padding-bottom: 134px; }
  .application-section { padding: 26px 20px; border-radius: 10px; }
  .application-section__heading { margin-bottom: 26px; padding-bottom: 22px; }
  .application-section__title { gap: 10px; }
  .application-section__title > span { flex-basis: 30px; }
  .application-section__heading h2 { font-size: 25px; }
  .application-section__heading > p { margin-left: 0; font-size: 13px; }
  .application-field-grid { grid-template-columns: 1fr; }
  .application-field--full { grid-column: 1; }
  .application-form .form-field label, .application-file > label { font-size: 13.5px; }
  .application-file > div { grid-template-columns: minmax(0,1fr) auto; gap: 5px 10px; }
  .application-file > div small { grid-column: 1/-1; grid-row: 2; }
  .application-file__action { font-size: 13px; }
  .consent-card__summary { gap: 11px; padding: 17px 15px; }
  .consent-card__summary label { gap: 9px; font-size: 13px; }
  .consent-card__summary button { font-size: 11px; }
  .consent-card__body { margin: 0 12px 12px; padding: 18px 16px; }
  .consent-card__body dl div { grid-template-columns: 1fr; gap: 5px; }
  .application-submit-bar > div { align-items: stretch; flex-direction: column; gap: 8px; min-height: 0; }
  .application-submit-bar p { display: none; }
  .application-submit-bar .apply-button { width: 100%; min-width: 0; }
.application-complete > div > div { align-items: stretch; flex-direction: column; }
}

/* 최종 운영 우선순위 — 이후 차수의 기존 규칙보다 항상 뒤에서 적용 */
body[data-page="home"] .value-card--visual-2 .value-card__image { background-image: url("assets/selected/professionalism-collaboration.webp"); }
body[data-page="home"] .value-card--visual-3 .value-card__image { background-image: url("assets/selected/professionalism-standard.png"); }
body[data-page="home"] .value-card--visual-4 .value-card__image { background-image: url("assets/selected/professionalism-action.webp"); }
.page-hero__media img { filter: none; object-position: center; }
body[data-page="company"] .page-hero__media::after { background: linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .10) 72%, rgba(0, 0, 0, .18)); }
.story-split__visual--development img { object-position: center; }
body[data-page="culture"] .culture-story { height: 300vh; }
body[data-page="culture"] .culture-story__sticky > img { filter: saturate(.92) brightness(.72); transform: scale(calc(1.015 + var(--culture-progress, 0) * .025)); }
body[data-page="culture"] .culture-story__shade { background: radial-gradient(ellipse 70% 62% at 50% 49%, rgba(0, 0, 0, .26), rgba(0, 0, 0, .54) 90%), rgba(0, 0, 0, calc(.04 + var(--culture-progress, 0) * .13)); }
.career-visual--join { background-image: url("assets/selected/join-360.webp"); background-position: center; }
.selected-bottom-section { padding: 0 0 clamp(72px, 9vw, 124px); background: #fff; }
.selected-bottom-visual { overflow: hidden; margin: 0; border-radius: 18px; background: #ecebe7; }
.selected-bottom-visual--coffee { margin: 58px 0 0; }
.selected-bottom-visual img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.news-loading { padding: 72px 0; color: #777; text-align: center; }
@media (max-width: 760px) {
  body[data-page="culture"] .culture-story { height: 290vh; }
  .selected-bottom-visual,
  .selected-bottom-visual--coffee { margin-top: 42px; border-radius: 12px; }
}

/* ============================================================
   19차 수정 — 이미지 전체 표시·컴팩트 Hero·콘텐츠 정렬
   ============================================================ */

/* OUR BRANDS를 기준으로 텍스트형 Hero의 높이와 상단 여백을 통일한다. */
.page-title--compact {
  min-height: 0;
  padding: 118px 0 64px;
  background: #000;
  color: #fff;
}
.page-title--compact .section-kicker { margin-bottom: 16px; }
.page-title--compact h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
}

body[data-page="team"] .team-hero,
body[data-page="welfare"] .welfare-hero,
body[data-page="careers"] .recruit-hero {
  display: block;
  min-height: 0;
  overflow: visible;
  background: #000;
  color: #fff;
}
body[data-page="team"] .team-hero::after,
body[data-page="welfare"] .welfare-hero::after,
body[data-page="careers"] .recruit-hero::after { content: none; }
body[data-page="team"] .team-hero .container,
body[data-page="welfare"] .welfare-hero .container,
body[data-page="careers"] .recruit-hero__content {
  position: static;
  padding-top: 0;
  padding-bottom: 0;
}
body[data-page="team"] .team-hero h1,
body[data-page="welfare"] .welfare-hero h1,
body[data-page="careers"] .recruit-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
}
body[data-page="careers"] .recruit-hero p {
  max-width: 850px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

/* 고정 프레임에 사진을 억지로 채우지 않고, 선정 원본을 온전히 보여준다. */
body[data-page="company"] .page-hero__media {
  isolation: isolate;
  background: #16120f;
}
body[data-page="company"] .page-hero__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -36px;
  background: url("assets/r19/company-product-display-swapped-centered.webp") center / cover no-repeat;
  filter: blur(24px) brightness(.62) saturate(.84);
  transform: scale(1.05);
}
body[data-page="company"] .page-hero__media img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
body[data-page="company"] .page-hero__media::after { z-index: 2; }

body[data-page="culture"] .culture-story { height: 340vh; }
body[data-page="culture"] .culture-story__sticky {
  isolation: isolate;
  background: #050505;
}
body[data-page="culture"] .culture-story__sticky::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -36px;
  background: url("assets/r18/culture-brand-hero-all-moments.png") center / cover no-repeat;
  filter: blur(26px) brightness(.46) saturate(.78);
  transform: scale(1.06);
}
body[data-page="culture"] .culture-story__sticky > img {
  z-index: 1;
  object-fit: contain;
  object-position: center;
  transform: none;
}
body[data-page="culture"] .culture-story__shade { z-index: 2; }
body[data-page="culture"] .culture-story__content { z-index: 3; }

.story-split__visual img,
.story-split__visual--development img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.story-split__visual--development { background: #ecebe7; }

.brand-row__visual { background: #eee; }
.brand-row__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}

.company-gallery,
.workplace-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.company-gallery img,
.workplace-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 30 / 17;
  object-fit: contain;
  object-position: center;
  background: #171717;
}

.news-featured__image,
.news-card__image,
.story-card__visual { background: #f1f1ef; }
.news-featured__image img,
.news-card__image img,
.story-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}

.recruit-message__visual {
  min-height: 0;
  aspect-ratio: 6 / 5;
  background-color: #ecebe7;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* 정사각 원본 카드의 확대 효과를 없애 가장자리 손실을 방지한다. */
body[data-page="home"] .value-grid { align-items: start; }
body[data-page="home"] .value-card--visual-1 .value-card__image {
  background-image: url("assets/r19/professionalism-colleague-no-bottles.webp");
}
body[data-page="home"] .value-card:hover .value-card__image,
body[data-page="home"] .value-card.is-open .value-card__image,
body[data-page="culture"] .work-principle-card:hover .work-principle-card__image,
body[data-page="culture"] .work-principle-card.is-open .work-principle-card__image {
  transform: none;
}
body[data-page="home"] .value-card.is-open {
  min-height: 520px;
  aspect-ratio: auto;
  background: #111;
}
body[data-page="home"] .value-card.is-open .value-card__image {
  background-position: center top;
  background-size: 100% auto;
  background-color: #111;
}
body[data-page="home"] .value-card .accordion-panel {
  font-size: 12.5px;
  line-height: 1.58;
}
body[data-page="home"] .value-card .accordion-panel p { margin: 0 0 9px; }
body[data-page="home"] .value-card .accordion-panel p:last-child { margin-bottom: 0; }

/* PEOPLE STORY: 사진과 문구 모두 잘리지 않고 세로 중앙에 오도록 한다. */
.people-banner {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  height: auto;
  min-height: 390px;
  align-items: stretch;
}
.people-banner__visual {
  min-height: 0;
  background: #111;
}
.people-banner__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.people-banner__copy {
  min-width: 0;
  padding: 46px;
  justify-content: center;
}
.people-banner__copy .section-kicker { margin: 0 0 14px; }
.people-banner__copy h2 { margin: 0 0 18px; }
.people-banner__copy > p:not(.section-kicker) { margin: 0 0 24px; }
.people-banner__copy .button { align-self: flex-start; }

/* 채용 Coffee Chat 박스: 제목과 버튼의 하단선을 맞추고 불필요한 간격을 줄인다. */
.recruit-quick__coffee {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(380px, 1.18fr);
  grid-template-rows: auto;
  column-gap: 40px;
  row-gap: 0;
  align-items: stretch;
  padding: 42px !important;
}
.recruit-quick__coffee-left,
.recruit-quick__coffee-right {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.recruit-quick__coffee-left { justify-content: flex-end; }
.recruit-quick__coffee-left .section-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .58);
}
.recruit-quick__coffee-left h2 {
  align-self: flex-start;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
}
.recruit-quick__coffee-right > p {
  min-height: 0;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
}
.recruit-quick__coffee-right .recruit-button {
  align-self: flex-start;
  margin-top: auto;
  color: #111;
  background: #fff;
}

/* FAQ·커피챗의 선정 이미지는 JOIN 360 안으로 이동하고 전체 화면을 보존한다. */
.career-cta--faq,
.career-cta--coffee {
  height: min(56.25vw, 900px);
  min-height: 620px;
  background: #111;
}
.career-cta--process {
  min-height: 500px;
  background: linear-gradient(135deg, #111, #1c1c1c);
}
.career-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #111;
  filter: none;
}
.career-cta__media::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .18) 72%, rgba(0, 0, 0, .38));
}

/* 채용 프로세스 번호는 사이트의 웜 뉴트럴 톤으로 맞춘다. */
.process-detail-list h2 span,
.process-detail-heading > span { color: #80766b; }

@media (max-width: 900px) {
  .recruit-quick__coffee {
    display: flex;
    gap: 24px;
    flex-direction: column;
    padding: 34px !important;
  }
  .recruit-quick__coffee-left { justify-content: flex-start; }
  .recruit-quick__coffee-right .recruit-button { margin-top: 18px; }
}

@media (max-width: 760px) {
  .page-title--compact { padding: 92px 0 50px; }
  .page-title--compact h1,
  body[data-page="team"] .team-hero h1,
  body[data-page="welfare"] .welfare-hero h1,
  body[data-page="careers"] .recruit-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
  }
  body[data-page="careers"] .recruit-hero p { font-size: 15px; }
  body[data-page="culture"] .culture-story { height: 330vh; }

  body[data-page="home"] .value-card.is-open { min-height: 500px; }

  .company-gallery,
  .workplace-gallery { grid-template-columns: 1fr; }
  .company-gallery img,
  .company-gallery img:first-child,
  .workplace-gallery img { grid-column: auto; height: auto; }

  .people-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .people-banner__visual { aspect-ratio: 16 / 9; height: auto; }
  .people-banner__copy { padding: 38px 28px 42px; }

  .career-cta--faq,
  .career-cta--coffee {
    display: block;
    height: auto;
    min-height: 0;
    padding-top: 56.25vw;
  }
  .career-cta--faq .career-cta__media,
  .career-cta--coffee .career-cta__media {
    bottom: auto;
    height: 56.25vw;
  }
  .career-cta--faq .career-cta__content,
  .career-cta--coffee .career-cta__content { padding-top: 54px; padding-bottom: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="culture"] .culture-story { height: auto; }
  body[data-page="culture"] .culture-story__sticky {
    position: relative;
    min-height: 100svh;
  }
}

/* ============================================================
   20차 수정 — 카드 높이·텍스트형 회사 Hero·이미지 여백 균형
   ============================================================ */

/* PROFESSIONALISM: 설명을 열어도 정사각 카드의 외곽 크기는 변하지 않는다. */
body[data-page="home"] .value-card.is-open {
  min-height: 0;
  aspect-ratio: 1 / 1;
}
body[data-page="home"] .value-card.is-open .value-card__image {
  background-size: cover;
  background-position: center;
}
body[data-page="home"] .value-card.is-open .value-card__body {
  min-height: 0;
  overflow: hidden;
}
body[data-page="home"] .value-card__top { flex: 0 0 auto; }
body[data-page="home"] .value-card .accordion-panel {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}

/* COMPANY: OUR BRANDS와 같은 검은 텍스트 Hero, 제품 이미지는 본문 왼쪽에 배치한다. */
body[data-page="company"] .company-development { overflow: hidden; }
body[data-page="company"] .company-development .story-split {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(48px, 6vw, 86px);
}
body[data-page="company"] .company-development .story-split__visual {
  width: 100%;
  background: #ecebe7;
}
body[data-page="company"] .company-development .story-split__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
body[data-page="company"] .company-development .story-split__copy > p:not(.section-kicker) {
  margin-bottom: 18px;
  line-height: 1.78;
}

/* CULTURE: 첫 화면에는 Hero만 보이고 첫 뷰포트를 지난 뒤 메뉴가 나타난다. */
body[data-page="culture"] .culture-story__sticky { min-height: 0; }
body[data-page="culture"] .site-header--overlay {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity .25s ease, transform .3s ease, background .3s ease, visibility .3s ease;
}
body[data-page="culture"] .site-header--overlay.is-scrolled {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  background: var(--black);
}

/* CAREERS: 지원자 관점의 JOIN 360 문구와 원본 비율의 컴팩트 이미지를 균형 있게 배치한다. */
body[data-page="careers"] .recruit-message { padding: 72px 0 92px; }
body[data-page="careers"] .recruit-message__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(36px, 5vw, 70px);
}
body[data-page="careers"] .recruit-message__visual {
  width: min(100%, 440px);
  justify-self: end;
  background-size: cover;
}

/* FAQ·커피챗: 16:9 원본 전체를 보존하되 전면 배경 대신 우측 비주얼로 축소한다. */
.career-cta--faq,
.career-cta--coffee {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(480px, 1.22fr);
  grid-template-rows: auto;
  height: auto;
  min-height: clamp(480px, 36vw, 560px);
  padding: 0;
  background: #111;
}
.career-cta--faq .career-cta__media,
.career-cta--coffee .career-cta__media {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: min(100%, 960px);
  height: auto;
  aspect-ratio: 16 / 9;
}
.career-cta--faq .career-cta__media img,
.career-cta--coffee .career-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
.career-cta--faq .career-cta__media::after,
.career-cta--coffee .career-cta__media::after {
  background: linear-gradient(90deg, rgba(17, 17, 17, .28), transparent 32%);
}
.career-cta--faq .career-cta__content,
.career-cta--coffee .career-cta__content {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: min(calc(100% - 64px), 560px);
  margin: 0;
  padding-right: clamp(20px, 3vw, 48px);
}
.career-cta--faq h2,
.career-cta--coffee h2 { font-size: clamp(38px, 4vw, 62px); }

@media (max-width: 1080px) {
  body[data-page="company"] .company-development .story-split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  body[data-page="careers"] .recruit-message__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body[data-page="careers"] .recruit-message__visual {
    width: min(100%, 480px);
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .career-cta--faq,
  .career-cta--coffee {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
    padding: 0;
  }
  .career-cta--faq .career-cta__media,
  .career-cta--coffee .career-cta__media {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 960px);
    height: auto;
    aspect-ratio: 16 / 9;
    justify-self: center;
  }
  .career-cta--faq .career-cta__content,
  .career-cta--coffee .career-cta__content {
    grid-column: 1;
    grid-row: 2;
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    padding: 50px 0 64px;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body[data-page="company"] .company-development .story-split { gap: 36px; }
  body[data-page="company"] .company-development .story-split__copy > p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.72;
  }
  body[data-page="careers"] .recruit-message { padding: 52px 0 72px; }
  body[data-page="careers"] .recruit-message__visual {
    width: 100%;
    justify-self: stretch;
  }
}

/* ============================================================
   21차 수정 — 회사소개 이미지 균형·일하는 방식 Hero 전면 채움
   ============================================================ */

/* COMPANY: 제품 이미지를 본문 높이에 맞춰 키우고, 좌측 여백은 자연스럽게 크롭한다. */
body[data-page="company"] .company-development .container {
  width: min(calc(100% - 48px), 1440px);
}
body[data-page="company"] .company-development .story-split {
  grid-template-columns: minmax(0, 1.12fr) minmax(500px, .88fr);
  gap: clamp(36px, 4vw, 64px);
  align-items: stretch;
}
body[data-page="company"] .company-development .story-split__visual {
  min-height: 520px;
}
body[data-page="company"] .company-development .story-split__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 54% center;
}
body[data-page="company"] .company-development .story-split__copy {
  align-self: center;
  padding: 12px 0;
}

/* CULTURE: 어떤 화면비에서도 좌우에 배경색이 드러나지 않도록 8% 오버스캔한다. */
body[data-page="culture"] .culture-story,
body[data-page="culture"] .culture-story__sticky {
  width: 100%;
  max-width: none;
}
body[data-page="culture"] .culture-story__sticky::before {
  content: none;
}
body[data-page="culture"] .culture-story__sticky > img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover !important;
  object-position: center center;
  transform: scale(calc(1.08 + var(--culture-progress, 0) * .05));
  transform-origin: center center;
}

@media (max-width: 1080px) {
  body[data-page="company"] .company-development .story-split {
    grid-template-columns: 1fr;
  }
  body[data-page="company"] .company-development .story-split__visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  body[data-page="company"] .company-development .container {
    width: min(calc(100% - 36px), 1440px);
  }
  body[data-page="company"] .company-development .story-split__copy {
    padding: 0;
  }
}

/* ============================================================
   22차 수정 — 커피챗 Hero 이미지 이동·FAQ CTA 전면 이미지
   ============================================================ */

/* COFFEE CHAT: 하단의 의자·커피 이미지를 상단 신청 Hero로 이동한다. */
body[data-page="coffee"] .coffee-detail-head {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 50px 0 48px;
  overflow: hidden;
  border-bottom: 0;
  color: #fff;
  background: #17130f url("assets/selected/coffee-bottom.webp") right center / contain no-repeat;
  isolation: isolate;
}
body[data-page="coffee"] .coffee-detail-head::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .62) 48%, rgba(0, 0, 0, .36) 100%);
  content: "";
}
body[data-page="coffee"] .coffee-detail-head__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 980px);
}
body[data-page="coffee"] .coffee-detail-head .section-kicker,
body[data-page="coffee"] .coffee-detail-head__summary,
body[data-page="coffee"] .coffee-detail-head__meta {
  color: rgba(255, 255, 255, .82) !important;
}
body[data-page="coffee"] .coffee-detail-head__meta span + span::before {
  background: rgba(255, 255, 255, .42);
}
body[data-page="coffee"] .coffee-detail-head .apply-button {
  color: #111;
  background: #fff;
}

/* COFFEE CHAT 하단은 이미지 중복 없이 단정한 JOIN 360 패널로 유지한다. */
.career-cta--coffee {
  display: flex;
  height: auto;
  min-height: 500px;
  align-items: center;
  padding: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1c1b19 100%);
}
.career-cta--coffee .career-cta__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 90px 0;
}

/* FAQ: 사진과 문구를 분할하지 않고 한 장의 전면 배경으로 겹친다. */
.career-cta--faq {
  position: relative;
  display: flex;
  height: auto;
  min-height: clamp(480px, 36vw, 560px);
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #111;
}
.career-cta--faq .career-cta__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.career-cta--faq .career-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: none;
}
.career-cta--faq .career-cta__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .58) 54%, rgba(0, 0, 0, .46) 100%);
  content: "";
}
.career-cta--faq .career-cta__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 70px 0;
}
.career-cta--faq h2,
.career-cta--coffee h2 { font-size: clamp(38px, 4vw, 62px); }

@media (max-width: 760px) {
  body[data-page="coffee"] .coffee-detail-head {
    min-height: 0;
    padding: 34px 0;
    background-position: center;
  }
  body[data-page="coffee"] .coffee-detail-head::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .6) 58%, rgba(0, 0, 0, .7) 100%);
  }
  body[data-page="coffee"] .coffee-detail-head__inner,
  .career-cta--faq .career-cta__content,
  .career-cta--coffee .career-cta__content {
    width: min(calc(100% - 36px), var(--max));
  }
  .career-cta--faq { min-height: 420px; }
  .career-cta--faq .career-cta__content,
  .career-cta--coffee .career-cta__content { padding: 48px 0; }
}

.coffee-form-note {
  margin: 14px 0 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.65;
  opacity: .78;
}
.coffee-form-note a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
