/* ==========================================================
   NOING COMMUNICATIONS — site styles
   ========================================================== */

:root {
  --orange: #f9a93b;
  --flame: #ff5a1f;
  --amber: #ffc24a;
  --ink: #141414;
  --ink-2: #1f1f1f;
  --gray: #58595b;
  --muted: #8a8a8a;
  --line: rgba(20, 20, 20, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --white: #ffffff;
  --yellow: #ffd23f;
  --clay: #ab4a26;

  --grad: linear-gradient(120deg, #ff4d1c 0%, #ff7a1f 45%, #f9b240 100%);

  --font: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --display: "Archivo", "Pretendard Variable", "Pretendard", system-ui, sans-serif;
  --label: "Archivo", "Pretendard Variable", "Pretendard", system-ui, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1320px;
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--flame); color: #fff; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--label); font-weight: 800; font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: 0.1em; text-transform: uppercase; font-stretch: 92%;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }

.display {
  font-family: var(--display); font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  font-stretch: 90%; word-spacing: 0.14em;
}
.h-xl { font-size: clamp(56px, 11vw, 176px); }
.h-lg { font-size: clamp(44px, 7.4vw, 112px); }
.h-md { font-size: clamp(34px, 4.6vw, 64px); }

.ko-title {
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.22;
  font-size: clamp(30px, 4.4vw, 60px);
}
.ko-sub { font-weight: 700; letter-spacing: -0.02em; line-height: 1.4; font-size: clamp(20px, 2.2vw, 28px); }
.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.85; color: #3d3d3d; max-width: 46em; text-wrap: pretty; }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.accent { color: var(--flame); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--label); font-weight: 800; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; font-stretch: 92%;
  border: 2px solid currentColor;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--flame); border-color: var(--flame); }
.btn-light { color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-line:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--label); font-weight: 800; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; font-stretch: 92%;
  border-bottom: 2px solid currentColor; padding-bottom: 4px;
}
.link-arrow span { transition: transform 0.35s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  color: #fff;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.5s var(--ease), box-shadow 0.4s;
}
.site-header.is-solid { background: rgba(251, 248, 242, 0.92); color: var(--ink); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
body.theme-light-top .site-header:not(.is-solid) { color: var(--ink); }

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand-mark { display: flex; align-items: center; gap: 14px; }
.brand-mark img { width: 52px; height: 52px; }
.brand-mark .word { font-family: var(--display); font-weight: 900; font-size: 32px; letter-spacing: 0.005em; line-height: 1;  font-stretch: 90%; }
.brand-mark .word small { display: block; font-family: var(--display); font-size: 14.5px; font-weight: 800; font-stretch: 90%; margin-top: 1px; opacity: 0.95; white-space: nowrap; line-height: 1; }

.gnb { display: flex; align-items: center; height: 100%; }
.gnb > li { position: relative; height: 100%; display: flex; align-items: center; }
.gnb > li:hover, .gnb > li:focus-within { z-index: 5; }
.gnb > li > a {
  display: block; padding: 0 22px;
  font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: 0.08em;
  position: relative;
}
.gnb > li > a::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: -8px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.gnb > li:hover > a::after,
.gnb > li.is-current > a::after { transform: scaleX(1); }

.gnb .sub {
  position: absolute; top: calc(100% - 14px); left: 50%;
  min-width: 210px; padding: 12px;
  background: var(--ink); color: #fff; border-radius: 14px;
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.gnb > li:hover .sub,
.gnb > li:focus-within .sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.gnb .sub a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 8px; font-size: 15px; font-weight: 600; white-space: nowrap;
}
.gnb .sub a small { font-family: var(--label); font-size: 11px; letter-spacing: 0.12em; opacity: 0.55; }
.gnb .sub a:hover { background: var(--flame); }
.gnb .sub a:hover small { opacity: 1; }

.menu-btn { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; position: relative; }
.menu-btn span { position: absolute; width: 22px; height: 2px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s; }
.menu-btn span:nth-child(1) { transform: translateY(-6px); }
.menu-btn span:nth-child(3) { transform: translateY(6px); }
body.menu-open .menu-btn span:nth-child(1) { transform: rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: rotate(-45deg); }
body.menu-open .site-header { color: #fff; background: transparent; box-shadow: none; backdrop-filter: none; }

/* full screen menu */
.fullmenu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: #fff;
  clip-path: circle(0% at calc(100% - 60px) 42px);
  transition: clip-path 0.8s var(--ease);
  overflow-y: auto;
}
body.menu-open { overflow: hidden; }
body.menu-open .fullmenu { clip-path: circle(150% at calc(100% - 60px) 42px); }
.fullmenu-inner { min-height: 100%; padding-block: calc(var(--header-h) + 40px) 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-content: center; }
.fullmenu h3 { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 2.9vw, 46px); line-height: 1; margin-bottom: 22px;  font-stretch: 90%;  word-spacing: 0.14em; }
.fullmenu h3 a:hover { color: var(--orange); }
.fullmenu li a { display: inline-block; padding: 6px 0; color: rgba(255, 255, 255, 0.65); font-size: 17px; transition: color 0.25s; }
.fullmenu li a:hover { color: #fff; }
.fullmenu .col { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); padding-left: 28px; border-left: 1px solid var(--line-dark); min-width: 0; }
.fullmenu .col:first-child { padding-left: 0; border-left: 0; }
body.menu-open .fullmenu .col { opacity: 1; transform: none; }
body.menu-open .fullmenu .col:nth-child(2) { transition-delay: 0.08s; }
body.menu-open .fullmenu .col:nth-child(3) { transition-delay: 0.16s; }
body.menu-open .fullmenu .col:nth-child(4) { transition-delay: 0.24s; }
.fullmenu-foot { grid-column: 1 / -1; border-top: 1px solid var(--line-dark); padding-top: 24px; margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: rgba(255, 255, 255, 0.55); font-size: 14px; }

/* ==========================================================
   HERO (main)
   ========================================================== */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  background: var(--grad); color: #fff;
  display: flex; align-items: flex-end;
}
.hero-blob {
  position: absolute; border-radius: 50%; opacity: 0.7; pointer-events: none; will-change: transform;
  animation: blob 14s ease-in-out infinite alternate;
}
.hero-blob.b1 { width: 70vw; height: 70vw; background: radial-gradient(circle, #ffd45e 0%, rgba(255, 212, 94, 0) 65%); right: -20vw; top: -28vw; }
.hero-blob.b2 { width: 60vw; height: 60vw; background: radial-gradient(circle, #ff3b16 0%, rgba(255, 59, 22, 0) 65%); left: -22vw; bottom: -26vw; animation-delay: -6s; }
@keyframes blob { to { transform: translate(-6vw, 5vw) scale(1.12); } }

.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: calc(var(--header-h) + 40px) clamp(40px, 7vh, 88px); }
.hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: clamp(24px, 6vh, 64px); }
.hero .eyebrow { color: rgba(255, 255, 255, 0.92); }
.hero-title { font-size: clamp(52px, 9vw, 150px); font-stretch: 90%;  word-spacing: 0.14em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(105%); animation: rise 1.1s var(--ease) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero-title .outline { color: transparent; -webkit-text-stroke: 2px #fff; }
@keyframes rise { to { transform: none; } }

.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-top: clamp(28px, 5vh, 56px); flex-wrap: wrap; }
.hero-copy { max-width: 560px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.8; opacity: 0; animation: fade 1s 0.5s var(--ease) forwards; }
.hero-copy strong { font-size: clamp(22px, 2.2vw, 30px); display: block; margin-bottom: 10px; letter-spacing: -0.03em; line-height: 1.35; }
@keyframes fade { to { opacity: 1; } }

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding-block: clamp(88px, 13vw, 180px); position: relative; }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .lead { color: rgba(255, 255, 255, 0.7); }
.section-cream { background: var(--cream); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(48px, 7vw, 96px); }
.section-head .lead { max-width: 480px; text-wrap: pretty; }
.section-head .eyebrow { margin-bottom: 20px; color: var(--flame); }
.section-dark .section-head .eyebrow { color: var(--orange); }

/* WHY statement */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: end; }
.why-stat { font-family: var(--display); font-weight: 900; line-height: 0.85; font-size: clamp(120px, 22vw, 340px); letter-spacing: -0.05em;  font-stretch: 90%; }
.why-stat sup { font-size: 0.26em; vertical-align: top; position: relative; top: 0.35em; margin-left: 0.08em; letter-spacing: 0; }
.why-stat small { display: block; font-family: var(--font); font-size: clamp(22px, 2.6vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.3; margin-top: 18px; }
.why-body .ko-title { margin-bottom: 28px; font-size: clamp(28px, 3.2vw, 46px); }
.why-body .lead + .lead { margin-top: 18px; }
.why-body .link-arrow { margin-top: 40px; }

/* numbers */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.numbers li { padding: 36px 28px 0 0; border-right: 1px solid var(--line); padding-left: 28px; }
.numbers li:first-child { padding-left: 0; }
.numbers li:last-child { border-right: 0; }
.section-dark .numbers, .section-dark .numbers li { border-color: var(--line-dark); }
.num { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 4.6vw, 76px); line-height: 1; letter-spacing: -0.03em; white-space: nowrap;  font-stretch: 90%; }
.num em { font-style: normal; color: var(--flame); }
.num-label { margin-top: 14px; font-weight: 700; }
.num-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* field grid (what we do) */
.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.field-card {
  position: relative; min-height: clamp(260px, 26vw, 360px); padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; isolation: isolate;
}
.field-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--grad);
  transform: translateY(101%); transition: transform 0.6s var(--ease);
}
.field-card:hover::before { transform: none; }
.field-card .idx { font-family: var(--label); font-weight: 700; font-size: 14px; letter-spacing: 0.14em; opacity: 0.6; }
.field-card h3 { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 3.4vw, 52px); line-height: 1; margin: auto 0 16px; letter-spacing: -0.01em; transition: transform 0.5s var(--ease);  font-stretch: 90%;  word-spacing: 0.14em; }
.field-card p { color: rgba(255, 255, 255, 0.7); font-size: 16px; line-height: 1.7; transition: color 0.4s; }
.field-card:hover p { color: #fff; }
.field-card:hover h3 { transform: translateY(-6px); }
.field-card .plus { position: absolute; top: clamp(24px, 3vw, 40px); right: clamp(24px, 3vw, 40px); width: 40px; height: 40px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; transition: transform 0.5s var(--ease), background 0.4s, color 0.4s; }
.field-card:hover .plus { transform: rotate(90deg); background: #fff; color: var(--ink); }

/* brand cards */
.brand-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); }
.brand-card {
  position: relative; border-radius: 28px; overflow: hidden; min-height: clamp(460px, 48vw, 680px);
  display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 3.4vw, 52px);
  isolation: isolate;
}
.brand-card .bg { position: absolute; inset: 0; z-index: -2; transition: transform 1.2s var(--ease); }
.brand-card .bg img { width: 100%; height: 100%; object-fit: cover; }
.brand-card:hover .bg { transform: scale(1.06); }
.brand-card.is-jasaeng { background: var(--yellow); color: var(--ink); }
.brand-card.is-jasaeng .logo { width: clamp(180px, 20vw, 280px); margin: auto; transition: transform 0.8s var(--ease); }
.brand-card.is-jasaeng:hover .logo { transform: rotate(-8deg) scale(1.04); }
.brand-card.is-cafe { color: #fff; }
.brand-card.is-cafe::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.72) 100%); }
.brand-card.is-cafe .logo { width: clamp(200px, 22vw, 300px); filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55)); }
.brand-card .tag { font-family: var(--label); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.brand-card h3 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; }
.brand-card p { margin-top: 10px; opacity: 0.85; max-width: 24em; text-wrap: pretty; }
.brand-card .go { position: absolute; right: clamp(28px, 3.4vw, 52px); bottom: clamp(28px, 3.4vw, 52px); width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 22px; transition: transform 0.5s var(--ease), background 0.3s; }
.brand-card.is-cafe .go { background: #fff; color: var(--ink); }
.brand-card:hover .go { transform: rotate(-45deg); background: var(--flame); color: #fff; }
.brand-card .bottom { padding-right: 90px; }

/* recognition strip */
.award-strip { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.award-track { display: flex; gap: 20px; width: max-content; animation: award-scroll 70s linear infinite; }
@keyframes award-scroll { to { transform: translateX(-50%); } }
.award-strip:hover .award-track { animation-play-state: paused; }
.award-item { width: 200px; flex-shrink: 0; }
.award-item img { width: 200px; height: 282px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); transition: transform 0.4s var(--ease); background: #eee; }
.award-item:hover img { transform: translateY(-8px); }
.award-item p { margin-top: 12px; font-size: 14px; line-height: 1.5; font-weight: 600; }
.award-item time { display: block; font-family: var(--label); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }

/* CTA */
.cta { background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.cta .container { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.cta .display { font-size: clamp(52px, 8vw, 128px); }
.cta p { font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; margin-bottom: 20px; }

/* ==========================================================
   SUB PAGES
   ========================================================== */
.sub-hero {
  position: relative; overflow: hidden; color: #fff; background: var(--ink);
  padding-block: calc(var(--header-h) + clamp(80px, 12vw, 160px)) clamp(48px, 6vw, 80px);
  min-height: min(72svh, 760px); display: flex; align-items: flex-end;
}
.sub-hero > .container { width: 100%; }
.sub-hero.is-grad { background: var(--grad); }
.sub-hero .bg { position: absolute; inset: 0; z-index: 0; }
.sub-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.sub-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.6)); }
.sub-hero .container { position: relative; z-index: 1; }
.crumb { display: flex; gap: 10px; align-items: center; font-family: var(--label); font-weight: 800; font-size: 13.5px; letter-spacing: 0.12em; font-stretch: 92%; margin-bottom: 24px; opacity: 0.85; }
.crumb span { opacity: 0.6; }
.sub-hero h1 { font-size: clamp(56px, 11vw, 180px); }
.sub-hero h1 .line { display: block; overflow: hidden; }
.sub-hero h1 .line > span { display: inline-block; transform: translateY(105%); animation: rise 1s var(--ease) forwards; }
.sub-hero .ko { margin-top: 20px; font-size: clamp(18px, 2vw, 26px); font-weight: 700; letter-spacing: -0.02em; opacity: 0; animation: fade 0.9s 0.35s var(--ease) forwards; }

.subnav { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); transition: top 0.5s var(--ease); }
body.header-shown .subnav { top: var(--header-h); }
.subnav ul { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.subnav a { display: block; padding: 20px 18px; font-family: var(--label); font-weight: 800; font-size: 15px; letter-spacing: 0.08em; font-stretch: 92%; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; }
.subnav a:hover { color: var(--ink); }
.subnav a.is-current { color: var(--ink); border-color: var(--flame); }

/* mission / quote */
.mission { text-align: center; }
.mission .eyebrow { color: var(--flame); margin-bottom: 32px; }
.mission h2 { font-size: clamp(40px, 7vw, 104px); font-weight: 900; letter-spacing: -0.05em; line-height: 1.12;  word-spacing: 0.14em; }
.mission .lead { max-width: 640px; margin: 36px auto 0; text-wrap: balance; }

.quote-band { background: var(--ink); color: #fff; }
.quote-band blockquote { margin: 0; font-size: clamp(30px, 4.6vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.3; }
.quote-band blockquote::before { content: "“"; display: block; font-family: var(--display); font-size: 2.2em; line-height: 0.6; color: var(--orange); margin-bottom: 12px; }
.quote-band cite { display: block; margin-top: 28px; font-style: normal; font-family: var(--label); font-weight: 700; letter-spacing: 0.14em; font-size: 13px; color: rgba(255,255,255,0.6); }

/* split text */
.split { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 100px); }
.split .eyebrow { color: var(--flame); margin-bottom: 20px; }
.split-body p + p { margin-top: 22px; }
.big-lines { font-size: clamp(26px, 3.4vw, 46px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.35; text-wrap: balance; }
.big-lines span { color: var(--muted); }

/* values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value {
  border-radius: 22px; padding: 32px 28px 36px; background: #fff; border: 1px solid var(--line);
  min-height: 340px; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), background 0.4s, color 0.4s, border-color 0.4s;
}
.value:hover { transform: translateY(-10px); background: var(--ink); color: #fff; border-color: var(--ink); }
.value .idx { font-family: var(--label); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: var(--flame); }
.value h3 { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 2.6vw, 40px); margin-top: auto; line-height: 1;  font-stretch: 90%; }
.value h4 { font-size: 20px; font-weight: 800; margin: 10px 0 12px; }
.value p { font-size: 15.5px; line-height: 1.7; opacity: 0.75; }

/* timeline */
.timeline { border-top: 2px solid var(--ink); }
.tl-year { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding-block: 36px; border-bottom: 1px solid var(--line); }
.tl-year h3 { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 4vw, 60px); line-height: 1; letter-spacing: -0.02em; transition: color 0.3s;  font-stretch: 90%; }
.tl-year:hover h3 { color: var(--flame); }
.tl-year li { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 6px 0; font-size: 17px; }
.tl-year li time { font-family: var(--label); font-weight: 700; color: var(--muted); }

/* business rows */
.biz-list { border-top: 2px solid var(--ink); }
.biz-row { display: grid; grid-template-columns: 90px 1fr 1.25fr; gap: 32px; align-items: start; padding-block: clamp(32px, 4vw, 52px); border-bottom: 1px solid var(--line); transition: padding 0.5s var(--ease); }
.biz-row .idx { font-family: var(--label); font-weight: 700; color: var(--flame); letter-spacing: 0.1em; padding-top: 10px; }
.biz-row h3 { font-family: var(--display); font-weight: 900; font-size: clamp(36px, 4.6vw, 68px); line-height: 1;  font-stretch: 90%;  word-spacing: 0.14em; }
.biz-row h3 small { display: block; font-family: var(--font); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-top: 12px; color: var(--gray); }
.biz-row p { color: #444; }
.biz-row .chips { margin-top: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; font-weight: 600; background: #fff; }

/* fact sheet */
.facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); }
.facts > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.facts > div:nth-child(odd) { padding-right: 40px; }
.facts dt { font-family: var(--label); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--orange); padding-top: 3px; }
.facts dd { margin: 0; font-weight: 600; }

/* social cards */
.social-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.social-main { border-radius: 26px; background: var(--grad); color: #fff; padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: space-between; min-height: 460px; }
.social-main h3 { font-family: var(--display); font-weight: 900; font-size: clamp(44px, 5.4vw, 80px); line-height: 0.95;  font-stretch: 90%;  word-spacing: 0.14em; }
.social-main p { margin-top: 16px; max-width: 520px; opacity: 0.95; }
.social-side { display: grid; gap: 20px; }
.social-item { border-radius: 22px; background: #fff; border: 1px solid var(--line); padding: 28px 30px; }
.social-item h4 { font-size: 20px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.social-item p { font-size: 15.5px; color: #555; }

/* awards grid */
.award-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 2vw, 28px); }
.award-grid button { text-align: left; display: block; width: 100%; }
.award-grid img { width: 100%; aspect-ratio: 0.71; object-fit: cover; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.award-grid button:hover img { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,0.18); }
.award-grid p { margin-top: 12px; font-size: 14px; line-height: 1.5; font-weight: 600; }
.award-grid time { display: block; font-family: var(--label); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,10,10,0.92); display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-height: 82vh; width: auto; border-radius: 8px; }
.lightbox p { color: #fff; text-align: center; margin-top: 16px; font-weight: 600; }
.lightbox .close { position: absolute; top: 18px; right: 18px; width: 52px; height: 52px; border-radius: 50%; color: #fff; font-size: 30px; border: 1px solid rgba(255,255,255,0.3); }

/* brand page: jasaengsal */
.brand-hero-jasaeng { background: var(--yellow); color: var(--ink); padding-block: calc(var(--header-h) + 60px) 80px; overflow: hidden; position: relative; }
.brand-hero-jasaeng .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.brand-hero-jasaeng h1 { font-size: clamp(46px, 7vw, 108px); font-weight: 900; letter-spacing: -0.06em; line-height: 1.05; }
.brand-hero-jasaeng .en { font-family: var(--display); font-weight: 900; font-size: clamp(16px, 1.6vw, 22px); letter-spacing: 0.2em; margin-bottom: 18px; }
.brand-hero-jasaeng .lead { color: #2b2b2b; margin-top: 24px; max-width: 30em; text-wrap: pretty; }
.brand-hero-jasaeng .logo-wrap { position: relative; }
.brand-hero-jasaeng .logo-wrap img { width: min(460px, 100%); margin-left: auto; animation: bob 5s ease-in-out infinite; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15)); }
@keyframes bob { 50% { transform: translateY(-16px) rotate(-4deg); } }
.sticker-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.sticker-row span { padding: 8px 18px; border-radius: 999px; background: var(--ink); color: var(--yellow); font-weight: 700; font-size: 15px; }
.sticker-row span:nth-child(even) { background: #fff; color: var(--ink); }

.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat { border-radius: 20px; padding: 26px 22px 30px; background: #fff; border: 1px solid var(--line); min-height: 250px; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), background 0.3s; }
.cat:hover { transform: translateY(-8px) rotate(-1deg); background: var(--yellow); }
.cat .emoji { font-size: 40px; line-height: 1; }
.cat h4 { margin-top: auto; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.cat p { font-size: 15px; color: #555; margin-top: 6px; line-height: 1.6; }

.channel-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.channel { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 28px 30px; border-radius: 20px; border: 1px solid var(--line-dark); transition: background 0.3s, color 0.3s, border-color 0.3s; }
.channel:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.channel strong { font-family: var(--display); font-weight: 900; font-size: 26px; display: block;  font-stretch: 90%; }
.channel span { font-size: 14px; opacity: 0.7; }
.channel i { font-style: normal; font-size: 24px; transition: transform 0.3s var(--ease); }
.channel:hover i { transform: rotate(-45deg); }

/* brand page: cafe */
.cafe-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.cafe-intro .photo { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; }
.cafe-intro .photo img { width: 100%; height: 100%; object-fit: cover; }
.cafe-intro .eyebrow { color: var(--clay); margin-bottom: 20px; }

.gallery { columns: 3; column-gap: 16px; }
.gallery figure { margin: 0 0 16px; break-inside: avoid; border-radius: 16px; overflow: hidden; }
.gallery img { width: 100%; transition: transform 1s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }

.point-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.point { background: var(--paper); padding: 34px 28px; }
.point .idx { font-family: var(--display); font-weight: 900; font-size: 44px; color: var(--clay); line-height: 1;  font-stretch: 90%; }
.point h4 { font-size: 20px; font-weight: 800; margin: 22px 0 8px; }
.point p { font-size: 15.5px; color: #555; }

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.visit-card { border-radius: 24px; padding: clamp(32px, 4vw, 52px); background: var(--clay); color: #fff; }
.visit-card.alt { background: var(--ink); }
.visit-card dl { margin: 24px 0 0; }
.visit-card dl div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.2); }
.visit-card dt { font-family: var(--label); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; opacity: 0.7; padding-top: 3px; }
.visit-card dd { margin: 0; font-weight: 600; }

/* people pages */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.perk { border-radius: 22px; padding: 30px; background: #fff; border: 1px solid var(--line); }
.perk h4 { font-size: 20px; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.perk h4::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--flame); }
.perk li { padding: 7px 0; border-top: 1px dashed var(--line); font-size: 15.5px; color: #444; }

.way-list { border-top: 1px solid var(--line-dark); }
.way { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-block: clamp(36px, 4.4vw, 60px); border-bottom: 1px solid var(--line-dark); align-items: center; }
.way h3 { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 5.6vw, 88px); line-height: 0.95; transition: color 0.4s;  font-stretch: 90%;  word-spacing: 0.14em; }
.way:hover h3 { color: var(--orange); }
.way h4 { font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.way p { color: rgba(255,255,255,0.7); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.process li { position: relative; padding: 30px 26px; border-radius: 20px; background: #fff; border: 1px solid var(--line); counter-increment: step; }
.process li::before { content: "STEP " counter(step, decimal-leading-zero); font-family: var(--label); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; color: var(--flame); }
.process h4 { font-size: 21px; font-weight: 800; margin: 16px 0 6px; }
.process p { font-size: 15px; color: #555; }

.opening { border-radius: 28px; background: var(--ink); color: #fff; padding: clamp(36px, 5vw, 72px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.opening h3 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.3; }
.opening p { color: rgba(255,255,255,0.65); margin-top: 10px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 96px); }
.contact-info .big-mail { display: inline-block; font-family: var(--display); font-weight: 900; font-size: clamp(30px, 3.6vw, 52px); letter-spacing: -0.02em; line-height: 1.1; margin: 18px 0 40px; border-bottom: 3px solid var(--flame);  font-stretch: 90%; }
.contact-info .big-mail:hover { color: var(--flame); }
.contact-info dl { margin: 0; border-top: 1px solid var(--line); }
.contact-info dl div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info dt { font-family: var(--label); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; color: var(--muted); padding-top: 3px; }
.contact-info dd { margin: 0; font-weight: 600; }
.topic-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.form { background: #fff; border-radius: 28px; padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line); }
.form h2 { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 3.4vw, 48px); line-height: 1; margin-bottom: 28px;  font-stretch: 90%; }
.field { margin-bottom: 18px; }
.field label, .field .label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.field label em { color: var(--flame); font-style: normal; }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 16px; border-radius: 12px; border: 1px solid #ddd; background: var(--paper);
  font: inherit; font-size: 16px; color: var(--ink); transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--flame); background: #fff; box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-chips { display: flex; flex-wrap: wrap; gap: 8px; position: relative; }
.radio-chips input { position: absolute; width: auto; left: 12px; top: 12px; opacity: 0; pointer-events: none; }
.radio-chips label { margin: 0; padding: 10px 16px; border-radius: 999px; border: 1px solid #ddd; font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.2s; }
.radio-chips input:checked + label { background: var(--ink); color: #fff; border-color: var(--ink); }
.radio-chips input:focus-visible + label { box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.3); }
.consent { margin: 22px 0 26px; padding: 18px 20px; border-radius: 14px; background: var(--paper); font-size: 14.5px; }
.consent label { display: flex; gap: 10px; align-items: center; font-weight: 700; cursor: pointer; }
.consent input { width: 20px; height: 20px; accent-color: var(--flame); }
.consent details { margin-top: 10px; color: #555; }
.consent summary { cursor: pointer; font-weight: 600; color: var(--muted); }
.consent details div { margin-top: 10px; line-height: 1.7; }
.form .btn { width: 100%; justify-content: center; }
.form-note { margin-top: 14px; font-size: 13.5px; color: var(--muted); text-align: center; }
.form-msg { margin-top: 14px; font-size: 14.5px; font-weight: 600; text-align: center; color: var(--flame); min-height: 1em; }

.map { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); height: 420px; background: #e9e4da; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4); }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.65); padding-block: 80px 40px; font-size: 14.5px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer-top .brand-mark { color: #fff; margin-bottom: 24px; }
.footer-top h4 { font-family: var(--label); font-weight: 700; font-size: 14px; letter-spacing: 0.14em; color: #fff; margin-bottom: 16px; }
.footer-top h4 a:hover { color: var(--orange); }
.footer-top li a { display: inline-block; padding: 4px 0; }
.footer-top li a:hover { color: #fff; }
.footer-info p { line-height: 1.9; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 28px; }
.sns { display: flex; gap: 10px; }
.sns a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; font-family: var(--label); font-weight: 700; font-size: 12px; transition: background 0.3s, border-color 0.3s; }
.sns a:hover { background: var(--flame); border-color: var(--flame); }
.to-top { font-family: var(--label); font-weight: 700; letter-spacing: 0.14em; font-size: 12px; color: #fff; display: inline-flex; gap: 8px; align-items: center; }


/* five-column number row (brand page) */
.numbers.is-five { grid-template-columns: repeat(5, 1fr); }
.numbers.is-five .num { font-size: clamp(34px, 3.6vw, 60px); }

/* footer / menu address labels */
.footer-info p b, .fullmenu-foot b { font-family: var(--label); font-weight: 700; font-size: 11.5px; letter-spacing: 0.14em; color: var(--orange); margin-right: 8px; }
.footer-info p + p { margin-top: 10px; }
.fullmenu-foot { gap: 8px 28px; }
.fullmenu-foot span { display: inline-flex; align-items: baseline; }


/* ==========================================================
   ACTIVITY PHOTOS
   ========================================================== */
.act-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 1.8vw, 26px); }
.act { position: relative; border-radius: 20px; overflow: hidden; background: var(--ink); color: #fff; }
.act img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 1s var(--ease); }
.act:hover img { transform: scale(1.05); }
.act figcaption { position: absolute; inset: auto 0 0 0; padding: 28px 32px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.82)); }
.act .when { font-family: var(--label); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; color: var(--orange); }
.act h4 { font-size: clamp(21px, 1.9vw, 28px); font-weight: 800; letter-spacing: -0.02em; margin: 6px 0 4px; }
.act p { font-size: 15.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.78); }
.act.is-tall img { aspect-ratio: 3 / 4; }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 20px); }
.photo-strip figure { margin: 0; border-radius: 18px; overflow: hidden; position: relative; }
.photo-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1s var(--ease); }
.photo-strip figure:hover img { transform: scale(1.05); }
.photo-strip figcaption { position: absolute; inset: auto 0 0 0; padding: 18px 22px; color: #fff; font-size: 15px; font-weight: 600; background: linear-gradient(transparent, rgba(0, 0, 0, 0.78)); }
.photo-strip.is-wide { grid-template-columns: repeat(4, 1fr); }
.photo-strip.is-wide img { aspect-ratio: 1 / 1; }

/* ==========================================================
   REVEAL ANIMATION
   ========================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .award-track { animation: none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1080px) {
  .gnb { display: none; }
  .field-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .award-grid { grid-template-columns: repeat(4, 1fr); }
  .numbers.is-five { grid-template-columns: repeat(3, 1fr); }
  .numbers.is-five li:last-child { grid-column: span 3; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .act-grid, .photo-strip, .photo-strip.is-wide { grid-template-columns: repeat(2, 1fr); }
  .point-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-info { grid-column: 1 / -1; }
  .fullmenu-inner { grid-template-columns: 1fr 1fr; align-content: start; }
  .biz-row { grid-template-columns: 60px 1fr; }
  .biz-row > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  body { font-size: 16px; }
  .brand-mark img { width: 40px; height: 40px; }
  .brand-mark .word { font-size: 26px; }
  .brand-mark .word small { font-size: 12px; margin-top: 1px; }
  .why-grid, .split, .cafe-intro, .contact-grid, .social-grid, .visit, .brand-hero-jasaeng .container { grid-template-columns: 1fr; }
  .brand-cards { grid-template-columns: 1fr; }
  .numbers, .numbers.is-five { grid-template-columns: 1fr 1fr; }
  .numbers.is-five li:last-child { grid-column: span 2; border-right: 0; }
  .numbers li { padding: 28px 16px 28px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .numbers li:nth-child(odd) { border-right: 1px solid var(--line); }
  .numbers li:nth-child(even) { padding-left: 20px !important; }
  .section-dark .numbers li { border-color: var(--line-dark); }
  .facts { grid-template-columns: 1fr; }
  .facts > div:nth-child(odd) { padding-right: 0; }
  .tl-year { grid-template-columns: 1fr; gap: 12px; }
  .channel-list, .perk-grid, .process { grid-template-columns: 1fr; }
  .way { grid-template-columns: 1fr; gap: 12px; }
  .gallery { columns: 2; column-gap: 10px; }
  .act-grid { grid-template-columns: 1fr; }
  .gallery figure { margin-bottom: 10px; }
  .award-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-hero-jasaeng .logo-wrap img { width: 64%; margin: 0 auto; }
}

@media (max-width: 430px) {
  .brand-mark img { width: 36px; height: 36px; }
  .brand-mark .word { font-size: 23px; }
  .brand-mark .word small { font-size: 11px; }
}

@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .values, .point-grid { grid-template-columns: 1fr; }
  .value { min-height: 260px; }
  .field-row { grid-template-columns: 1fr; }
  .fullmenu-inner { grid-template-columns: 1fr; gap: 20px; }
  .fullmenu .col { padding-left: 0; border-left: 0; padding-top: 20px; border-top: 1px solid var(--line-dark); }
  .fullmenu .col:first-child { padding-top: 0; border-top: 0; }
  .fullmenu h3 { font-size: 40px; margin-bottom: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .biz-row { grid-template-columns: 1fr; gap: 12px; }
  .biz-row > div:last-child { grid-column: auto; }
  .contact-info dl div, .visit-card dl div, .facts > div { grid-template-columns: 1fr; gap: 4px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat { min-height: 180px; }
  .hero-bottom { flex-direction: column-reverse; align-items: flex-start; }
  .brand-card .bottom { padding-right: 0; padding-bottom: 76px; }
  .gallery { columns: 1; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip.is-wide { grid-template-columns: repeat(2, 1fr); }
}
