@charset "UTF-8";

/* ==========================================================================
   콘텐츠박스 — 원페이지 (화이트 테마)
   컬러 컨셉: 화이트 호리존의 밝은 스튜디오 + 크로마키 그린 액센트
   외부 CDN 의존 없음 (시놀로지 내부망/폐쇄망에서도 동일하게 렌더링)
   ========================================================================== */

:root {
  --bg:        #FFFFFF;
  --bg-2:      #F7F8F6;   /* 섹션 교차 배경 */
  --surface:   #FFFFFF;   /* 카드 */
  --surface-2: #F1F2EF;
  --line:      #DFE1DC;
  --line-soft: #EAEBE7;

  --text:      #14151A;
  --text-2:    #4E525A;
  --text-3:    #858992;

  --accent:    #0E8F52;   /* 본문 대비 확보용 진한 크로마키 그린 */
  --accent-dk: #0B7343;
  --accent-lt: #2FE08A;   /* 컬러칩·장식용 원색 */
  --accent-sf: rgba(14, 143, 82, .08);
  --accent-ink:#FFFFFF;   /* accent 배경 위 글자색 */

  --shadow-sm: 0 1px 2px rgba(20, 21, 26, .04);
  --shadow:    0 4px 16px rgba(20, 21, 26, .06);
  --shadow-lg: 0 14px 40px rgba(20, 21, 26, .10);

  --radius:    4px;
  --radius-lg: 10px;

  --wrap:      1240px;
  --gnb-h:     76px;

  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          system-ui, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-en: "Helvetica Neue", Arial, var(--font);
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--gnb-h); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
}
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

.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;
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  padding: 10px 16px; background: var(--accent); color: var(--accent-ink); font-weight: 700;
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* --- 버튼 ----------------------------------------------------------------- */
.btn {
  --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--line);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 26px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.015em;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  --btn-bg: var(--accent); --btn-fg: var(--accent-ink); --btn-bd: var(--accent);
  box-shadow: 0 6px 18px rgba(14, 143, 82, .22);
}
.btn--primary:hover { --btn-bg: var(--accent-dk); --btn-bd: var(--accent-dk); box-shadow: 0 10px 24px rgba(14, 143, 82, .28); }
.btn--ghost { --btn-bg: var(--surface); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { --btn-bd: var(--text-3); }
.btn--line { min-height: 44px; padding: 0 20px; font-size: 14px; }
.btn--line:hover { --btn-bd: var(--accent); --btn-fg: var(--accent); }

/* --- GNB ------------------------------------------------------------------ */
.gnb {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--gnb-h);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.gnb.is-stuck {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 12px rgba(20, 21, 26, .05);
}
.gnb__inner {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto; height: 100%;
  display: flex; align-items: center; gap: 28px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__image { width: 60px; height: 60px; object-fit: contain; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; display: flex; flex-direction: column; align-items: center;
  padding: 8px 16px; border-radius: var(--radius);
  transition: color .25s var(--ease);
}
.nav__en { font-family: var(--font-en); font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.nav__ko { font-size: 10px; color: var(--text-3); letter-spacing: .04em; transition: color .25s var(--ease); }
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transform: translateX(-50%); transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 22px; }
.nav__link.is-active { color: var(--accent); }
.nav__link.is-active .nav__ko { color: var(--accent); opacity: .7; }

.gnb__cta {
  display: inline-flex; align-items: center; gap: 6px; line-height: 1.2;
  padding: 11px 17px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.gnb__cta:hover { border-color: var(--accent); background: var(--accent-sf); }
.gnb__cta-label { font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.external-icon { width: 15px; height: 15px; flex: 0 0 auto; }

.gnb__toggle { display: none; width: 44px; height: 44px; padding: 12px; flex-direction: column; justify-content: space-between; }
.gnb__toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.gnb__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.gnb__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gnb__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: absolute; inset: var(--gnb-h) 0 auto 0;
  background: rgba(255, 255, 255, .98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  padding: 12px 20px 26px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { display: flex; align-items: baseline; gap: 10px; padding: 15px 4px; border-bottom: 1px solid var(--line-soft); }
.mobile-nav a span { font-family: var(--font-en); font-size: 17px; font-weight: 700; letter-spacing: .1em; }
.mobile-nav a em { font-style: normal; font-size: 12px; color: var(--text-3); }
.mobile-nav__rental {
  margin-top: 18px; justify-content: center !important; border-bottom: 0 !important;
  background: var(--accent); color: var(--accent-ink) !important; border-radius: 999px;
  font-weight: 800; letter-spacing: .04em;
}
.mobile-nav__rental .external-icon { width: 17px; height: 17px; }

/* --- HERO ----------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--gnb-h) + 40px) 0 90px;
  overflow: hidden;
  background: var(--bg-2);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(115% 85% at 12% 4%, rgba(47, 224, 138, .16), transparent 58%),
    linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.92) 46%, rgba(255,255,255,.70) 78%, rgba(255,255,255,.52) 100%);
}
.hero__grain { display: none; }
.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; color: var(--text-2);
  padding: 7px 16px 7px 12px;
  background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(14, 143, 82, .5); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(14, 143, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 143, 82, 0); }
}

.hero__title {
  margin: 26px 0 0;
  font-size: clamp(2.35rem, 6.2vw, 4.75rem);
  font-weight: 800; line-height: 1.14; letter-spacing: -0.035em;
}
.hero__title .line { display: block; }
.hero__title em { font-style: normal; color: var(--accent); }
/* 브랜드명 줄 — 좌측 액센트 바로 한 줄 소개의 끝을 시각적으로 닫는다 */
.hero__title .line--accent { position: relative; padding-left: 22px; }
.hero__title .line--accent::before {
  content: ""; position: absolute; left: 0; top: .22em; bottom: .22em;
  width: 4px; background: var(--accent); border-radius: 2px;
}

.hero__lead {
  margin-top: 24px; max-width: 47ch;
  font-size: clamp(0.95rem, 1.5vw, 1.06rem); color: var(--text-2); line-height: 1.85;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px; font-size: 12.5px; color: var(--text-2);
  background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 999px;
  backdrop-filter: blur(4px);
}
.chip__swatch {
  width: 9px; height: 9px; border-radius: 2px; background: var(--sw);
  box-shadow: 0 0 0 1px rgba(20, 21, 26, .18);
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 1;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--font-en); font-size: 10px; font-weight: 700;
  letter-spacing: .3em; color: var(--text-3);
}
.hero__scroll-bar { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); }

/* --- 섹션 공통 ------------------------------------------------------------ */
.section { position: relative; padding: clamp(80px, 11vw, 140px) 0; }
.section--about     { background: var(--bg); border-top: 1px solid var(--line-soft); }
.section--studio    { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.section--portfolio { background: var(--bg); border-top: 1px solid var(--line-soft); }
.section--map       { background: var(--bg-2); border-top: 1px solid var(--line-soft); }

.sec-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head__en {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 12px; font-weight: 800;
  letter-spacing: .28em; color: var(--accent);
}
.sec-head__en::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.sec-head__title {
  margin-top: 16px;
  font-size: clamp(1.75rem, 3.9vw, 2.85rem); font-weight: 800;
  line-height: 1.28; letter-spacing: -0.03em;
}
.sec-head__desc { margin-top: 18px; color: var(--text-2); font-size: clamp(0.94rem, 1.3vw, 1.02rem); }
.sec-head__desc strong { color: var(--text); font-weight: 700; }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease) var(--d, 0ms), transform .7s var(--ease) var(--d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

/* --- ABOUT ---------------------------------------------------------------- */
.about__grid {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.svc {
  position: relative; background: var(--surface); padding: 34px 28px 38px;
  transition: background-color .35s var(--ease);
}
.svc:hover { background: var(--bg-2); }
.svc::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.svc:hover::before { transform: scaleX(1); }
.svc__no {
  font-family: var(--font-en); font-size: 11px; font-weight: 800;
  letter-spacing: .18em; color: var(--text-3);
}
.svc__icon { display: block; margin: 18px 0 16px; color: var(--accent); }
.svc__title { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.02em; }
.svc__en {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .14em;
  color: var(--text-3); margin-top: 5px; text-transform: uppercase;
}
.svc__desc { margin-top: 14px; font-size: 0.9rem; color: var(--text-2); line-height: 1.8; }

/* --- STUDIO --------------------------------------------------------------- */
.studio-list { display: flex; flex-direction: column; gap: clamp(28px, 5vw, 56px); }
.studio {
  display: grid; gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
}
.studio:nth-child(even) .studio__media { order: 2; }

.studio__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow);
}
.studio__media img {
  width: 100%; aspect-ratio: 9 / 6.4; object-fit: cover;
  transition: transform .8s var(--ease);
}
.studio:hover .studio__media img { transform: scale(1.04); }
.studio__en {
  font-family: var(--font-en); font-size: 11px; font-weight: 800;
  letter-spacing: .24em; color: var(--accent); text-transform: uppercase;
}
.studio__name {
  margin-top: 12px; font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.3;
}

.studio__spec { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.studio__spec > div {
  flex: 1 1 110px; padding: 13px 16px;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.studio__spec dt { font-size: 10.5px; letter-spacing: .1em; color: var(--text-3); }
.studio__spec dd { margin: 4px 0 0; font-family: var(--font-en); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }

.studio__points { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; }
.studio__points li { position: relative; padding-left: 20px; font-size: .92rem; color: var(--text-2); }
.studio__points li::before {
  content: ""; position: absolute; left: 2px; top: .72em;
  width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid var(--accent);
}

.studio__body .btn--line { margin-top: 26px; background: var(--surface); }

/* --- PORTFOLIO ------------------------------------------------------------ */
.filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter__btn {
  padding: 9px 20px; font-size: 13.5px; font-weight: 600; color: var(--text-2);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  transition: all .25s var(--ease);
}
.filter__btn:hover { color: var(--text); border-color: var(--text-3); }
.filter__btn.is-active {
  color: var(--accent-ink); background: var(--accent); border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(14, 143, 82, .2);
}

.works {
  display: grid; gap: 20px; align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.work { display: flex; flex-direction: column; }
.work[hidden] { display: none; }
.work__thumb {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease);
}
.work:hover .work__thumb { box-shadow: var(--shadow-lg); }
.work__thumb img {
  width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .75s var(--ease), filter .5s var(--ease);
  filter: grayscale(.28);
}
.work:hover .work__thumb img { transform: scale(1.05); filter: none; }
.work__play {
  position: absolute; right: 14px; bottom: 14px; z-index: 1;
  width: 42px; height: 42px; display: grid; place-items: center;
  color: var(--accent-ink); background: var(--accent); border-radius: 50%;
  box-shadow: 0 6px 18px rgba(14, 143, 82, .3);
  opacity: 0; transform: translateY(8px) scale(.9);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.work:hover .work__play { opacity: 1; transform: none; }

.work__meta { padding: 15px 3px 4px; }
.work__cat { font-family: var(--font-en); font-size: 11px; letter-spacing: .12em; color: var(--accent); font-weight: 700; }
.work__title { margin-top: 7px; font-size: 1.02rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.45; }
.work__client { margin-top: 5px; font-size: .84rem; color: var(--text-3); }

.works__empty { padding: 60px 0; text-align: center; color: var(--text-3); }

/* --- MAP ------------------------------------------------------------------ */
.map-grid {
  display: grid; gap: clamp(20px, 3vw, 34px);
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: stretch;
}
.map-grid__canvas {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  min-height: 340px;
}
.map-grid__canvas img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-grid__open {
  position: absolute; right: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 18px; font-size: 13px; font-weight: 700;
  color: var(--accent-ink); background: var(--accent); border-radius: 999px;
  box-shadow: 0 8px 22px rgba(14, 143, 82, .28);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.map-grid__open:hover { transform: translateY(-2px); background: var(--accent-dk); }

.map-grid__info {
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.contact > div { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.contact > div:first-child { padding-top: 0; }
.contact > div:last-child { border-bottom: 0; padding-bottom: 0; }
.contact dt { font-size: 11px; letter-spacing: .14em; color: var(--text-3); }
.contact dd { margin: 6px 0 0; font-size: .95rem; color: var(--text); line-height: 1.65; }
.contact__tel { font-family: var(--font-en); font-size: 1.28rem; font-weight: 800; letter-spacing: -0.01em; color: var(--accent); }
.map-grid__actions { display: flex; gap: 10px; }
.map-grid__actions .btn { flex: 1; }

/* --- FOOTER --------------------------------------------------------------- */
.footer { padding: 58px 0 110px; border-top: 1px solid var(--line); background: var(--surface-2); }
.footer__inner { display: flex; flex-direction: column; gap: 26px; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo { width: 92px; height: 92px; object-fit: contain; }
.footer__tagline { font-size: .95rem; font-weight: 600; color: var(--text-2); }
.footer__info { display: flex; flex-wrap: wrap; gap: 10px 34px; }
.footer__info > div { display: flex; align-items: baseline; gap: 10px; }
.footer__info dt { font-size: 11px; letter-spacing: .1em; color: var(--text-3); }
.footer__info dd { margin: 0; font-size: .88rem; color: var(--text-2); }
.footer__info a:hover { color: var(--accent); }
.footer__copy { font-size: 12px; color: var(--text-3); letter-spacing: .01em; }

/* --- 고정 퀵메뉴 ---------------------------------------------------------- */
.quick {
  position: fixed; right: 18px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 8px;
}
.quick__item {
  width: 58px; height: 58px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  color: var(--text); background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line); border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.quick__item:hover {
  transform: translateY(-3px);
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}
.quick__label { font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.quick__item[hidden] { display: none; }

/* --- 반응형 --------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .gnb__cta { margin-left: auto; }
  .gnb__toggle { display: flex; }
}
@media (max-width: 860px) {
  :root { --gnb-h: 66px; }
  .gnb__cta { display: none; }
  .studio, .map-grid { grid-template-columns: 1fr; }
  .studio:nth-child(even) .studio__media { order: 0; }
  .map-grid__canvas { min-height: 260px; }
  .works { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .hero { min-height: 92svh; }
  .footer { padding-bottom: 120px; }
}
@media (max-width: 520px) {
  .wrap, .gnb__inner { width: calc(100% - 32px); }
  .quick { right: 12px; bottom: 14px; flex-direction: row; }
  .quick__item { width: 54px; height: 54px; }
  .logo__image { width: 48px; height: 48px; }
  .works { grid-template-columns: 1fr; }
  .hero__chips li { font-size: 11.5px; padding: 7px 12px; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
}
