/* =========================================================
   신영육가공 - Global Stylesheet
   Color tokens taken from logo (warm brown / orange / gold)
   ========================================================= */

:root {
  --brown-900: #2A1F16;
  --brown-800: #3E2C1E;
  --brown-700: #5A4226;
  --brown-600: #7A5836;
  --brown-500: #A07A4F;
  --brown-300: #C9B299;
  --brown-200: #E2D5C2;
  --brown-100: #F0E8DC;

  --orange-600: #C66A1F;
  --orange-500: #D97E2D;
  --orange-400: #E89A4F;
  --gold-400:   #E8A93C;
  --gold-300:   #F2C770;

  --cream:    #FAF7F2;
  --cream-2:  #F4EFE6;
  --white:    #FFFFFF;
  --ink:      #1F1A15;
  --ink-2:    #463A2E;
  --muted:    #7A6E62;
  --line:     #E5DCCC;
  --line-2:   #EFE8DA;

  --shadow-sm: 0 1px 2px rgba(42, 31, 22, 0.06);
  --shadow:    0 8px 24px rgba(42, 31, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(42, 31, 22, 0.14);

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
}

/* Korean web font */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nanum+Myeongjo:wght@400;700;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.serif { font-family: "Nanum Myeongjo", "Cormorant Garamond", serif; }
.eng   { font-family: "Cormorant Garamond", serif; letter-spacing: 0.02em; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-2);
}

.header-top {
  border-bottom: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--muted);
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
}
.header-top .tel { color: var(--brown-700); font-weight: 600; }

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { height: 140px; width: auto; }
.logo .wordmark {
  display: none; /* logo image already has wordmark */
}

.gnb {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}
.gnb li, .submenu li { list-style: none; }
.gnb > li { position: relative; }
.gnb > li > a {
  display: block;
  padding: 30px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.gnb > li > a:hover { color: var(--orange-500); }
.gnb > li.active > a { color: var(--orange-500); }
.gnb > li.active > a::after {
  content: "";
  position: absolute;
  left: 22px; right: 22px;
  bottom: 22px;
  height: 2px;
  background: var(--orange-500);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  transform: translateX(-50%) translateY(8px);
}
.gnb > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.submenu li a:hover { background: var(--cream-2); color: var(--orange-500); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--brown-900);
  color: #C9B89E;
  padding: 64px 0 32px;
  margin-top: 120px;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 56px; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.55); line-height: 1.7; font-size: 13px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col p { color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.footer-col .label { display: inline-block; width: 64px; color: rgba(255,255,255,0.4); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

/* =========================================================
   PAGE HERO (subpage banner)
   ========================================================= */
.page-hero {
  position: relative;
  height: 360px;
  background: var(--brown-800);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,31,22,0.7), rgba(42,31,22,0.4));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 18px;
}
.page-hero .breadcrumb span + span::before { content: "›"; margin: 0 8px; opacity: 0.5; }

/* =========================================================
   SUB-NAV (within section)
   ========================================================= */
.subnav {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.subnav .container {
  display: flex;
  gap: 4px;
}
.subnav a {
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.subnav a:hover { color: var(--brown-700); }
.subnav a.active {
  color: var(--brown-800);
  border-bottom-color: var(--orange-500);
  font-weight: 700;
}

/* =========================================================
   SECTION & TYPE
   ========================================================= */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 48px 0; }

.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.section-title h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}
.section-title p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3, h4 { letter-spacing: -0.02em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--brown-800);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--brown-700); }
.btn.btn-orange { background: var(--orange-500); }
.btn.btn-orange:hover { background: var(--orange-600); }
.btn.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   UTILITY
   ========================================================= */
.text-center { text-align: center; }
.divider { width: 40px; height: 2px; background: var(--orange-500); margin: 0 auto 24px; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--orange-500);
  text-transform: uppercase;
  font-weight: 600;
}

/* =========================================================
   HOMEPAGE - Banner 1 (Hero)
   ========================================================= */
.hero {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 600px;
  max-height: 820px;
  overflow: hidden;
  color: var(--white);
}
.hero .bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/banner-1-cow.jpg');
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(42,31,22,0.55) 0%, rgba(42,31,22,0) 60%);
}
.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold-300);
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
  animation: fadeUp 1s 0.2s both;
}
.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 800px;
  animation: fadeUp 1s 0.4s both;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  animation: fadeUp 1s 0.6s both;
}
.hero .cta {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  animation: fadeUp 1s 0.8s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

/* =========================================================
   HOMEPAGE - Banner 2 (Values)
   ========================================================= */
.values {
  background: var(--cream);
  padding: 120px 0;
}
.values .head {
  text-align: center;
  margin-bottom: 72px;
}
.values .head .kicker { margin-bottom: 16px; display: block; }
.values .head h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brown-900);
  margin-bottom: 20px;
}
.values .head p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--white);
  padding: 56px 36px;
  text-align: center;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-400);
}
.value-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}
.value-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--brown-200);
}
.value-card:nth-child(2) .value-circle {
  background: linear-gradient(135deg, var(--brown-600), var(--brown-800));
}
.value-card:nth-child(3) .value-circle {
  background: linear-gradient(135deg, var(--gold-400), var(--orange-500));
}
.value-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.value-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   HOMEPAGE - Process strip
   ========================================================= */
.process {
  padding: 96px 0;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process-step .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--orange-500);
  font-weight: 500;
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   HOMEPAGE - Feature split
   ========================================================= */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.feature-split .col {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-split .col.image {
  background-size: cover;
  background-position: center;
  padding: 0;
}
.feature-split .col.text {
  background: var(--brown-900);
  color: var(--white);
}
.feature-split .col.text .kicker { color: var(--gold-300); }
.feature-split .col.text h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.feature-split .col.text p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 12px;
}
.feature-split .col.text .btn { margin-top: 32px; align-self: flex-start; }

/* =========================================================
   HOMEPAGE - Banner 3 (CTA)
   ========================================================= */
.cta-banner {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--brown-800), var(--brown-900));
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/banner-2-meat.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: saturate(0.6);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .kicker { color: var(--gold-300); margin-bottom: 20px; display: inline-block; }
.cta-banner h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.cta-tel .label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-300);
  text-transform: uppercase;
}
.cta-tel .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =========================================================
   GREETING PAGE
   ========================================================= */
.greeting {
  padding: 120px 0;
}
.greeting-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.greeting-image {
  position: relative;
}
.greeting-image img {
  width: 100%;
  border-radius: 2px;
}
.greeting-image .frame {
  position: absolute;
  inset: -16px;
  border: 1px solid var(--orange-400);
  z-index: -1;
  border-radius: 2px;
}
.greeting-body .kicker { margin-bottom: 20px; display: block; }
.greeting-body h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  color: var(--brown-900);
}
.greeting-body .lead-quote {
  font-family: "Nanum Myeongjo", serif;
  font-size: 20px;
  color: var(--brown-700);
  border-left: 3px solid var(--orange-500);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.greeting-body p {
  color: var(--ink-2);
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 15.5px;
}
.greeting-sign {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.greeting-sign strong {
  font-size: 18px;
  margin-left: 8px;
  color: var(--brown-800);
}

/* =========================================================
   COMPANY (info) PAGE
   ========================================================= */
.info-card {
  background: var(--cream);
  padding: 56px;
  border-radius: var(--radius-lg);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}
.info-table th {
  width: 180px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.info-table td { color: var(--ink); }

.map-placeholder {
  margin-top: 48px;
  height: 420px;
  background: var(--brown-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   PHILOSOPHY PAGE
   ========================================================= */
.philosophy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.philosophy-row:last-child { margin-bottom: 0; }
.philosophy-row.reverse .text-col { order: 2; }
.philosophy-row .image-col {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  position: relative;
}
.philosophy-row .image-col .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 14px 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--orange-500);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
}
.philosophy-row .text-col .eng-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: var(--brown-200);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.philosophy-row .text-col h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--brown-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.philosophy-row .text-col p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.85;
}

/* =========================================================
   HISTORY (timeline) PAGE
   ========================================================= */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 28px 0;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 134px;
  top: 36px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange-500);
  z-index: 1;
}
.timeline-item:first-child::before { background: var(--orange-500); }
.timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--brown-800);
  text-align: right;
  letter-spacing: 0.02em;
}
.timeline-body h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.timeline-body p { color: var(--muted); font-size: 14px; }

/* =========================================================
   WORKPLACE PAGE
   ========================================================= */
.workplace-hero {
  background: var(--cream);
  padding: 96px 0;
}
.workplace-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.workplace-hero-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.workplace-hero-grid .text .kicker { margin-bottom: 18px; display: block; }
.workplace-hero-grid .text h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--brown-900);
}
.workplace-hero-grid .text p {
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: 16px;
}

.haccp-section {
  padding: 120px 0;
}
.haccp-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.haccp-cert-card {
  background: var(--cream);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.haccp-cert-card img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.haccp-cert-card .label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--orange-500);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.haccp-cert-card .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.haccp-text h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--brown-900);
  letter-spacing: -0.02em;
}
.haccp-text p {
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 15px;
}

.haccp-points {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.haccp-points .point {
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--orange-500);
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}

/* =========================================================
   CLIENTS PAGE
   ========================================================= */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.client-card {
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.client-card:hover { border-color: var(--orange-400); transform: translateY(-2px); }
.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
}

.client-empty {
  border-style: dashed;
  color: var(--brown-300);
  font-size: 14px;
  text-align: center;
}

/* =========================================================
   BOARD PAGES
   ========================================================= */
.board-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.board-toolbar .count {
  font-size: 14px;
  color: var(--muted);
}
.board-toolbar .count strong { color: var(--orange-500); font-weight: 700; }
.board-search {
  display: flex;
  gap: 8px;
}
.board-search select, .board-search input {
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
}
.board-search input { width: 240px; }
.board-search button {
  background: var(--brown-800);
  color: var(--white);
  padding: 0 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--brown-800);
}
.board-table th {
  padding: 18px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  background: var(--cream);
  letter-spacing: 0.05em;
}
.board-table td {
  padding: 22px 12px;
  border-bottom: 1px solid var(--line-2);
  font-size: 14.5px;
  text-align: center;
  color: var(--ink-2);
}
.board-table td.title {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}
.board-table tr:hover td { background: var(--cream); }
.board-table .badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.board-table .new {
  display: inline-block;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  border-radius: 50%;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 48px;
}
.pagination a {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all .15s;
}
.pagination a:hover { color: var(--orange-500); border-color: var(--orange-400); }
.pagination a.active {
  background: var(--brown-800);
  color: var(--white);
  border-color: var(--brown-800);
  font-weight: 700;
}

/* News (card) style */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange-400);
}
.news-card .thumb {
  aspect-ratio: 16/10;
  background: var(--cream);
  background-size: cover;
  background-position: center;
}
.news-card .body { padding: 24px; }
.news-card .meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
}
.news-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Q&A accordion */
.qna-list .item {
  border-bottom: 1px solid var(--line);
}
.qna-list .item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  position: relative;
}
.qna-list .item summary::-webkit-details-marker { display: none; }
.qna-list .item summary .q {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.qna-list .item summary .title { flex: 1; }
.qna-list .item summary .toggle {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.qna-list .item summary .toggle::before,
.qna-list .item summary .toggle::after {
  content: "";
  position: absolute;
  background: var(--brown-700);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s;
}
.qna-list .item summary .toggle::before { width: 14px; height: 2px; }
.qna-list .item summary .toggle::after { width: 2px; height: 14px; }
.qna-list .item[open] summary .toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.qna-list .item .answer {
  padding: 0 16px 32px 70px;
  display: flex;
  gap: 20px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
}
.qna-list .item .answer .a {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brown-100);
  color: var(--brown-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 16px;
  margin-left: -50px;
}

/* =========================================================
   ===== EDITORIAL / V2 SYSTEM =====
   ========================================================= */

/* Reveal-on-scroll primitives */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; opacity: 1; transform: none; }

/* Mask-reveal heading (per-line clip) */
.mask-lines { display: block; }
.mask-lines .ml-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}
.mask-lines .ml-line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.mask-lines.in .ml-line:nth-child(1) span { transition-delay: .15s; transform: none; }
.mask-lines.in .ml-line:nth-child(2) span { transition-delay: .30s; transform: none; }
.mask-lines.in .ml-line:nth-child(3) span { transition-delay: .45s; transform: none; }

/* Hero entries: shown statically by default (no flicker if JS / animations
   are throttled or never run — e.g. background tabs, preview iframes).
   When JS detects a visible tab, it adds .hero-animate on <html> and the
   entrance animations play exactly once. */
.cine-hero .mask-lines .ml-line span,
.epic-hero .mask-lines .ml-line span {
  transform: translateY(0);
}
.cine-hero .reveal,
.epic-hero .reveal,
.epic-hero .chapter {
  opacity: 1;
  transform: none;
}

/* JS-gated entrance animations (only when document is visible at load) */
.hero-animate .cine-hero .mask-lines .ml-line span,
.hero-animate .epic-hero .mask-lines .ml-line span {
  animation: heroMaskRise 1.1s cubic-bezier(.2,.8,.2,1) backwards;
}
.hero-animate .cine-hero .mask-lines .ml-line:nth-child(1) span,
.hero-animate .epic-hero .mask-lines .ml-line:nth-child(1) span { animation-delay: .15s; }
.hero-animate .cine-hero .mask-lines .ml-line:nth-child(2) span,
.hero-animate .epic-hero .mask-lines .ml-line:nth-child(2) span { animation-delay: .32s; }
.hero-animate .cine-hero .mask-lines .ml-line:nth-child(3) span,
.hero-animate .epic-hero .mask-lines .ml-line:nth-child(3) span { animation-delay: .49s; }
@keyframes heroMaskRise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero-animate .epic-hero .chapter,
.hero-animate .epic-hero .meta,
.hero-animate .cine-hero .eyebrow,
.hero-animate .cine-hero .lead,
.hero-animate .cine-hero .actions {
  animation: heroFadeUp 0.9s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero-animate .epic-hero .chapter { animation-delay: 0s; }
.hero-animate .epic-hero .meta { animation-delay: .8s; }
.hero-animate .cine-hero .eyebrow { animation-delay: 0s; }
.hero-animate .cine-hero .lead { animation-delay: .65s; }
.hero-animate .cine-hero .actions { animation-delay: .85s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* =========================================================
   CINEMATIC HERO (V2)
   ========================================================= */
.cine-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--brown-900);
  color: var(--white);
}
.cine-hero .bg {
  position: absolute; inset: 0;
  background: url('../img/banner-1-cow.jpg') center/cover no-repeat;
  transform: scale(1.12);
  animation: cineZoom 14s ease-out forwards;
  will-change: transform;
}
@keyframes cineZoom {
  from { transform: scale(1.18); }
  to   { transform: scale(1.05); }
}
.cine-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(20,12,4,0.35) 50%, rgba(20,12,4,0.85) 100%),
    linear-gradient(90deg, rgba(20,12,4,0.55) 0%, rgba(20,12,4,0.0) 60%);
}
.cine-hero .grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}

/* Vertical side rail */
.cine-rail {
  position: absolute;
  top: 0; bottom: 0;
  left: 32px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.cine-rail .vtext {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  font-weight: 500;
}
.cine-rail .vtext span { color: var(--gold-300); margin: 0 1.2em; }

/* Top corner meta */
.cine-meta {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}
.cine-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 12px var(--orange-500); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%    { opacity: 1;   transform: scale(1.4); }
}

/* Hero body */
.cine-hero .container {
  position: relative; z-index: 3;
  flex: 1 1 auto;
  min-height: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 56px;
}
.cine-hero .eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cine-hero .eyebrow::before {
  content: ""; width: 48px; height: 1px; background: var(--gold-300);
}
.cine-hero h1 {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.cine-hero h1 .accent {
  color: var(--orange-400);
  font-style: normal;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
}
.cine-hero .lead {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}
.cine-hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Bottom info bar */
.cine-foot {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
  backdrop-filter: blur(4px);
}
.cine-foot .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 72px;
  padding-bottom: 0;
  padding-top: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.cine-foot .item {
  display: flex; align-items: center; gap: 12px;
}
.cine-foot .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: none;
}
.cine-foot .item .label { color: rgba(255,255,255,0.55); letter-spacing: 0.25em; }
.cine-foot .scroll-cue { display: flex; align-items: center; gap: 10px; }
.cine-foot .scroll-cue .bar { width: 28px; height: 1px; background: rgba(255,255,255,0.5); overflow: hidden; position: relative; }
.cine-foot .scroll-cue .bar::after {
  content: ""; position: absolute; inset: 0; background: var(--white);
  transform: translateX(-100%); animation: cueSlide 1.8s ease-in-out infinite;
}
@keyframes cueSlide { 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--brown-900);
  color: var(--white);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-500);
  display: inline-block;
}
.marquee-track .gold { color: var(--gold-400); font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 600; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   STATS BAR (Counters)
   ========================================================= */
.stats {
  padding: 100px 0;
  background: var(--cream);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 8px 32px;
  border-left: 1px solid var(--line);
  position: relative;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat .num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 1;
  font-weight: 600;
  color: var(--brown-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat .num .suffix {
  font-size: 28px;
  color: var(--orange-500);
  font-style: italic;
  font-weight: 500;
}
.stat .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 700;
  margin-bottom: 8px;
}
.stat .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* =========================================================
   STICKY SCROLLY VALUES
   ========================================================= */
.scrolly {
  position: relative;
  background: var(--white);
  padding: 0;
}
.scrolly-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.scrolly-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--brown-900);
}
.scrolly-sticky .layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.scrolly-sticky .layer.on { opacity: 1; transform: scale(1); }
.scrolly-sticky .badge-num {
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.8);
}
.scrolly-sticky .badge-num strong {
  font-size: 48px;
  color: var(--gold-300);
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.scrolly-content { padding: 0 64px; }
.scrolly-step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.scrolly-step:last-child { border-bottom: none; }
.scrolly-step .step-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--orange-500);
  margin-bottom: 18px;
  font-weight: 600;
}
.scrolly-step .step-eng {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 600;
  font-style: italic;
  color: var(--brown-200);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.scrolly-step h3 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--brown-900);
  margin-bottom: 24px;
}
.scrolly-step p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.85;
  max-width: 460px;
}

/* =========================================================
   MANIFESTO QUOTE
   ========================================================= */
.manifesto {
  background: var(--brown-900);
  color: var(--white);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/banner-2-meat.jpg') center/cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.5);
}
.manifesto .container { position: relative; z-index: 1; max-width: 1080px; }
.manifesto .open-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  line-height: 0.6;
  color: var(--orange-500);
  font-weight: 600;
  margin-bottom: -30px;
  display: block;
}
.manifesto blockquote {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 40px;
}
.manifesto blockquote .em {
  color: var(--gold-300);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.manifesto .attr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.manifesto .attr::before {
  content: ""; width: 36px; height: 1px; background: var(--gold-300);
}

/* =========================================================
   HORIZONTAL PROCESS RAIL
   ========================================================= */
.hrail {
  padding: 120px 0 72px;
}
.hrail .head {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line);
}
.hrail .head .left .kicker { display: block; margin-bottom: 16px; }
.hrail .head .left h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--brown-900);
  font-weight: 800;
}
.hrail .head .right {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: right;
}
.hrail .head .right .count {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  display: block;
  color: var(--brown-900);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hrail-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 56px 0 120px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-500) transparent;
}
.hrail-track { cursor: grab; }
.hrail-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.hrail-track.dragging .hrail-card { pointer-events: none; }
.hrail-track::-webkit-scrollbar { height: 4px; }
.hrail-track::-webkit-scrollbar-thumb { background: var(--orange-500); }
.hrail-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  background: var(--brown-900);
  cursor: pointer;
}
.hrail-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s;
  filter: brightness(0.7) saturate(0.9);
}
.hrail-card:hover .img { transform: scale(1.06); filter: brightness(0.85) saturate(1); }
.hrail-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(20,12,4,0.85) 100%);
}
.hrail-card .body {
  position: absolute;
  inset: 0;
  padding: 36px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 1;
}
.hrail-card .step-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-300);
}
.hrail-card .info h4 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hrail-card .info p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.hrail-card .info .tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =========================================================
   EDITORIAL IMAGE GRID
   ========================================================= */
.edit-grid {
  padding: 0 0 160px;
}
.edit-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 16px;
}
.edit-cell {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.edit-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .5s;
}
.edit-cell:hover img { transform: scale(1.08); }
.edit-cell .cap {
  position: absolute;
  left: 24px; bottom: 24px;
  color: var(--white);
  z-index: 1;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.edit-cell:hover .cap { opacity: 1; transform: none; }
.edit-cell::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55));
  opacity: 0; transition: opacity .35s;
}
.edit-cell:hover::after { opacity: 1; }
.edit-cell .cap .small {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 6px;
}
.edit-cell .cap .ttl {
  font-family: "Nanum Myeongjo", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.edit-cell.c-a { grid-column: 1 / span 7; grid-row: span 6; }
.edit-cell.c-b { grid-column: 8 / span 5; grid-row: span 4; }
.edit-cell.c-c { grid-column: 8 / span 5; grid-row: span 2; }
.edit-cell.c-d { grid-column: 1 / span 4; grid-row: span 4; }
.edit-cell.c-e { grid-column: 5 / span 5; grid-row: span 4; }
.edit-cell.c-f { grid-column: 10 / span 3; grid-row: span 4; }

/* =========================================================
   HACCP FOCUS PANEL
   ========================================================= */
.focus-panel {
  background: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.focus-panel::before {
  content: "HACCP";
  position: absolute;
  left: -40px; top: 80px;
  font-family: "Cormorant Garamond", serif;
  font-size: 380px;
  line-height: 0.8;
  color: rgba(0,0,0,0.04);
  font-weight: 700;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.focus-text .kicker { display: block; margin-bottom: 18px; }
.focus-text h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--brown-900);
}
.focus-text h2 .em {
  color: var(--orange-500);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
.focus-text p {
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 15.5px;
  max-width: 480px;
}
.ccp-list {
  margin-top: 36px;
  border-top: 1px solid var(--brown-300);
}
.ccp-list .ccp {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--brown-300);
  transition: padding .25s;
}
.ccp-list .ccp:hover { padding-left: 12px; }
.ccp-list .ccp .code {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--orange-500);
  font-weight: 600;
}
.ccp-list .ccp .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-900);
}
.ccp-list .ccp .arrow {
  font-size: 14px;
  color: var(--muted);
  transition: transform .25s, color .25s;
}
.ccp-list .ccp:hover .arrow { transform: translateX(6px); color: var(--orange-500); }

.focus-cert {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.focus-cert:hover { transform: rotate(0); }
.focus-cert img { width: 100%; display: block; }
.focus-cert .stamp {
  position: absolute;
  right: -24px; bottom: -24px;
  width: 140px; height: 140px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 12px 30px rgba(217, 126, 45, 0.4);
  transform: rotate(8deg);
}
.focus-cert .stamp .yr {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.focus-cert .stamp .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 700;
}

/* =========================================================
   GIANT CTA
   ========================================================= */
.giant-cta {
  position: relative;
  background: var(--brown-900);
  color: var(--white);
  padding: 140px 0 0;
  overflow: hidden;
}
.giant-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/banner-2-meat.jpg') center/cover no-repeat;
  opacity: 0.12; filter: saturate(0.4);
}
.giant-cta .container { position: relative; z-index: 1; }
.giant-cta .kicker { color: var(--gold-300); margin-bottom: 24px; display: inline-block; }
.giant-cta h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 900px;
}
.giant-cta h2 .em {
  color: var(--orange-400);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
.giant-cta .sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.phone-display {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 64px;
}
.phone-display .lbl {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
}
.phone-display .num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  transition: color .3s, transform .3s;
}
.phone-display a:hover .num { color: var(--orange-400); transform: translateX(8px); }

.cta-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 0 0 100px;
}
.cta-meta .col h5 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 14px;
  font-weight: 700;
}
.cta-meta .col p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   RESPONSIVE (V2)
   ========================================================= */
@media (max-width: 960px) {
  .cine-rail { display: none; }
  .cine-meta { top: 16px; right: 16px; font-size: 11px; }
  .cine-hero .container { padding-bottom: 120px; }
  .cine-foot { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat { padding: 16px; border: none; border-top: 1px solid var(--line); }
  .stat:first-child, .stat:last-child { padding-left: 16px; padding-right: 16px; }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }
  .scrolly-inner { grid-template-columns: 1fr; }
  .scrolly-sticky { position: relative; height: 60vh; }
  .scrolly-content { padding: 0 24px; }
  .scrolly-step { min-height: auto; padding: 64px 0; }
  .scrolly-step .step-eng { font-size: 56px; }
  .scrolly-step h3 { font-size: 32px; }
  .focus-grid { grid-template-columns: 1fr; gap: 56px; }
  .focus-text h2 { font-size: 38px; }
  .focus-panel::before { font-size: 200px; }
  .edit-grid { padding-bottom: 80px; }
  .edit-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }
  /* Reset the desktop 12-col spans into a simple stack */
  .edit-mosaic .edit-cell {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }
  /* Lead + exterior images stay full-width and prominent */
  .edit-mosaic .edit-cell.c-a,
  .edit-mosaic .edit-cell.c-f {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }
  /* Captions always visible (no hover on touch) */
  .edit-cell .cap { opacity: 1; transform: none; left: 16px; bottom: 16px; }
  .edit-cell::after { opacity: 0.55; }
  .edit-cell .cap .ttl { font-size: 18px; }
  .hrail-card { flex-basis: 78vw; }
  .marquee-track { font-size: 20px; gap: 32px; animation-duration: 16s; }
  .marquee-track span { gap: 32px; }
  .cta-meta { grid-template-columns: 1fr; }
}

/* =========================================================
   EPIC PAGE HERO (subpages V2)
   ========================================================= */
.epic-hero {
  position: relative;
  height: 560px;
  background: var(--brown-900);
  color: var(--white);
  overflow: hidden;
}
.epic-hero .bg {
  position: absolute; inset: -8% 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  will-change: transform;
}
.epic-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(20,12,4,0.5) 60%, rgba(20,12,4,0.92) 100%),
    linear-gradient(90deg, rgba(20,12,4,0.4) 0%, rgba(20,12,4,0) 60%);
  z-index: 1;
}
.epic-hero .grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06; z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: overlay;
}
.epic-hero .rail {
  position: absolute;
  top: 0; bottom: 64px;
  left: 32px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.epic-hero .rail .vtext {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.epic-hero .rail .vtext span { color: var(--gold-300); margin: 0 1em; }

.epic-hero .container {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 100px;
}
.epic-hero .chapter {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold-300);
  margin-bottom: 24px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 16px;
}
.epic-hero .chapter::before {
  content: ""; width: 40px; height: 1px; background: var(--gold-300);
}
.epic-hero h1 {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.epic-hero h1 .alt {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--orange-400);
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.epic-hero .meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  height: 64px;
  display: flex; align-items: center;
  z-index: 3;
}
.epic-hero .meta .container {
  height: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0; padding-bottom: 0;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.epic-hero .meta .crumbs span + span::before { content: "/"; margin: 0 12px; opacity: 0.4; }
.epic-hero .meta .index {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: none;
}

/* =========================================================
   GREETING V2 — magazine style
   ========================================================= */
.greeting-v2 {
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.greeting-v2::before {
  content: "CEO";
  position: absolute;
  right: -40px;
  top: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 420px;
  line-height: 0.8;
  color: var(--cream-2);
  pointer-events: none;
  z-index: 0;
}
.greeting-v2 .container { position: relative; z-index: 1; }

.greeting-v2-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}
.greeting-v2 .img-col {
  position: sticky;
  top: 120px;
}
.greeting-v2 .img-col .frame {
  position: relative;
}
.greeting-v2 .img-col img {
  width: 100%;
  border-radius: 2px;
  display: block;
}
.greeting-v2 .img-col .index-tag {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 16px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.greeting-v2 .img-col .caption {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; justify-content: space-between;
}
.greeting-v2 .img-col .caption strong { color: var(--brown-800); font-weight: 700; }

.greeting-v2 .body-col .chapter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.greeting-v2 .body-col .chapter::before {
  content: ""; width: 36px; height: 1px; background: var(--orange-500);
}

.greeting-v2 .lead {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--brown-900);
  margin-bottom: 56px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.greeting-v2 .lead .em {
  color: var(--orange-500);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
}

.greeting-v2 .body p {
  color: var(--ink-2);
  line-height: 1.95;
  margin-bottom: 22px;
  font-size: 16px;
}
.greeting-v2 .body p:first-of-type::first-letter {
  font-family: "Nanum Myeongjo", serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--orange-500);
  float: left;
  line-height: 0.95;
  margin: 6px 12px 0 0;
}

.greeting-v2 .sig {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.greeting-v2 .sig .who { display: flex; flex-direction: column; gap: 8px; }
.greeting-v2 .sig .role {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.greeting-v2 .sig .name {
  font-family: "Nanum Myeongjo", serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--brown-900);
  letter-spacing: -0.02em;
}
.greeting-v2 .sig .name .eng {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 12px;
}
.greeting-v2 .sig .mono {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  color: var(--brown-200);
  line-height: 1;
}

/* =========================================================
   INFO PAGE V2 (Company info)
   ========================================================= */
.info-v2 {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.info-v2::before {
  content: "INFO";
  position: absolute;
  left: -60px; bottom: -60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 400px;
  line-height: 0.8;
  color: var(--cream-2);
  pointer-events: none;
}
.info-v2 .container { position: relative; z-index: 1; }
.info-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.info-v2 .label-side .chapter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.info-v2 .label-side h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brown-900);
  margin-bottom: 28px;
}
.info-v2 .label-side h2 .em {
  color: var(--orange-500);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}
.info-v2 .label-side p {
  color: var(--ink-2);
  line-height: 1.85;
  max-width: 360px;
  font-size: 15.5px;
}

.info-v2 .data-side {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 56px;
  position: relative;
}
.info-v2 .data-side::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange-500);
}
.info-v2-table { width: 100%; border-collapse: collapse; }
.info-v2-table tr { border-bottom: 1px solid var(--line); transition: background .2s; }
.info-v2-table tr:hover { background: var(--cream); }
.info-v2-table tr:last-child { border-bottom: none; }
.info-v2-table th, .info-v2-table td {
  padding: 22px 0;
  text-align: left;
  vertical-align: middle;
  font-size: 15px;
}
.info-v2-table th {
  width: 36%;
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.info-v2-table td {
  color: var(--ink);
  font-weight: 500;
}

.full-map {
  margin-top: 100px;
  height: 540px;
  position: relative;
  overflow: hidden;
}
.full-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(0.95); }
.full-map .pin {
  position: absolute;
  top: 32px; left: 32px;
  background: var(--brown-900);
  color: var(--white);
  padding: 24px 28px;
  z-index: 2;
  max-width: 320px;
}
.full-map .pin .lbl {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 12px;
}
.full-map .pin h4 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.full-map .pin p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* =========================================================
   PHILOSOPHY V2
   ========================================================= */
.phil-v2 { padding: 100px 0 60px; }
.phil-v2 .row {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 100px;
  align-items: center;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.phil-v2 .row:last-child { border-bottom: none; }
.phil-v2 .row.reverse { grid-template-columns: 5fr 7fr; }
.phil-v2 .row.reverse .img { order: -1; }
.phil-v2 .row .text .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--orange-500);
  margin-bottom: 24px;
  font-weight: 600;
}
.phil-v2 .row .text .eng {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(72px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--brown-200);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.phil-v2 .row .text h3 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--brown-900);
  margin-bottom: 28px;
}
.phil-v2 .row .text p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.95;
  max-width: 520px;
}
.phil-v2 .row .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.phil-v2 .row .img .ph {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.phil-v2 .row:hover .img .ph { transform: scale(1.05); }
.phil-v2 .row .img .stamp {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  color: var(--brown-900);
  padding: 12px 16px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.phil-v2 .row .img .stamp .no {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--orange-500);
  margin-bottom: 4px;
  font-style: normal;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* =========================================================
   TIMELINE V2 (history)
   ========================================================= */
.timeline-v2 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  position: relative;
}
.timeline-v2::before {
  content: "HISTORY";
  position: absolute;
  right: -40px; top: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 240px;
  line-height: 0.85;
  color: var(--cream-2);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
}
.tv2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
}
.tv2-row:last-child { border-bottom: none; }
.tv2-row .year {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--brown-900);
  position: relative;
}
.tv2-row .year::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--orange-500);
  margin-top: 20px;
}
.tv2-row.reverse .year { text-align: right; }
.tv2-row.reverse .year::after { margin-left: auto; }
.tv2-row.reverse .body { order: -1; }

.tv2-row .body .tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--brown-900);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.tv2-row .body h3 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--brown-900);
  margin-bottom: 14px;
}
.tv2-row .body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 440px;
}

/* =========================================================
   WORKPLACE V2
   ========================================================= */
.wp-intro {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.wp-intro::before {
  content: "HACCP";
  position: absolute;
  left: -40px; top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 380px;
  font-weight: 700;
  color: var(--cream-2);
  line-height: 0.85;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.wp-intro .container { position: relative; z-index: 1; }
.wp-intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.wp-intro .text .chapter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.wp-intro .text .chapter::before {
  content: ""; width: 36px; height: 1px; background: var(--orange-500);
}
.wp-intro .text h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--brown-900);
  margin-bottom: 32px;
}
.wp-intro .text h2 .em {
  color: var(--orange-500);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}
.wp-intro .text p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.wp-intro .visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.wp-intro .visual .ph {
  position: absolute; inset: 0;
  background: url('../img/workplace-2.jpg') center/cover no-repeat;
}
.wp-intro .visual .overlay-badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  background: var(--brown-900);
  color: var(--white);
  padding: 24px 32px;
  z-index: 2;
}
.wp-intro .visual .overlay-badge .lbl {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 10px;
}
.wp-intro .visual .overlay-badge .ttl {
  font-family: "Nanum Myeongjo", serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

/* Workplace full-bleed gallery */
.wp-gallery {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.wp-gallery .cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.wp-gallery .cell img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(.2,.7,.2,1);
}
.wp-gallery .cell:hover img { transform: scale(1.06); }
.wp-gallery .cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%);
}
.wp-gallery .cell .label {
  position: absolute;
  left: 32px; bottom: 32px;
  color: var(--white);
  z-index: 1;
}
.wp-gallery .cell .label .small {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 8px;
}
.wp-gallery .cell .label .ttl {
  font-family: "Nanum Myeongjo", serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* HACCP explanation block — reuse focus-panel */

/* =========================================================
   CLIENTS V2
   ========================================================= */
.clients-v2 {
  padding: 140px 0;
}
.clients-v2 .head {
  text-align: left;
  margin-bottom: 80px;
}
.clients-v2 .head .chapter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.clients-v2 .head h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--brown-900);
}
.clients-v2 .head h2 .em {
  color: var(--orange-500);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}
.clients-v2 .head p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
}

.clients-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.cm-cell {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, transform .25s;
  cursor: pointer;
}
.cm-cell:hover { border-color: var(--orange-400); transform: translateY(-4px); }
.cm-cell .img-area {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  position: relative;
}
.cm-cell .img-area img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: filter .25s, opacity .25s, transform .25s;
}
.cm-cell:hover .img-area img { transform: scale(1.04); }
.cm-cell .info {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.cm-cell .info .num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--orange-500);
}
.cm-cell .info .name {
  color: var(--brown-800);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 13px;
  font-family: "Pretendard", sans-serif;
}

.cm-cell.large { grid-column: span 6; aspect-ratio: 4/3; }
.cm-cell.mid   { grid-column: span 6; aspect-ratio: 4/3; }
.cm-cell.small { grid-column: span 4; aspect-ratio: 1; }
.cm-cell.wide  { grid-column: span 8; aspect-ratio: 2/1; }
.cm-cell.empty {
  border-style: dashed;
  background: transparent;
  color: var(--brown-300);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.cm-cell.empty .img-area { color: var(--brown-300); font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 28px; }

/* Become a partner CTA */
.partner-cta {
  margin-top: 120px;
  background: var(--brown-900);
  color: var(--white);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.partner-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/banner-1-cow.jpg') center/cover no-repeat;
  opacity: 0.12;
  filter: saturate(0.4);
}
.partner-cta > * { position: relative; z-index: 1; }
.partner-cta .chapter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.partner-cta h3 {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.partner-cta h3 .em { color: var(--orange-400); font-family: "Cormorant Garamond", serif; font-style: italic; }
.partner-cta .tel-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--white);
  display: block;
  transition: color .25s;
}
.partner-cta a:hover .tel-big { color: var(--orange-400); }
.partner-cta .tel-sub { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* =========================================================
   BOARD V2 (polish)
   ========================================================= */
.board-v2-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--brown-300);
}
.board-v2-head .left .chapter {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 14px;
}
.board-v2-head .left h2 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brown-900);
}
.board-v2-head .left h2 .em { color: var(--orange-500); font-family: "Cormorant Garamond", serif; font-style: italic; }
.board-v2-head .right {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.board-v2-head .right .num {
  font-size: 36px;
  font-weight: 600;
  color: var(--brown-900);
  letter-spacing: 0;
  display: inline-block;
  margin-right: 8px;
}

/* =========================================================
   RESPONSIVE (V2 pages)
   ========================================================= */
@media (max-width: 960px) {
  .epic-hero { height: 380px; }
  .epic-hero .container { padding-bottom: 80px; }
  .epic-hero .rail { display: none; }
  .epic-hero h1 { font-size: 36px; }
  .greeting-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .greeting-v2 .img-col { position: static; }
  .greeting-v2::before { font-size: 200px; right: -20px; }
  .info-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .info-v2 .data-side { padding: 32px 24px; }
  .info-v2::before { font-size: 200px; }
  .phil-v2 .row, .phil-v2 .row.reverse { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .phil-v2 .row.reverse .img { order: 0; }
  .tv2-row, .tv2-row.reverse { grid-template-columns: 1fr; gap: 16px; }
  .tv2-row.reverse .year { text-align: left; }
  .tv2-row.reverse .year::after { margin-left: 0; }
  .tv2-row.reverse .body { order: 0; }
  .timeline-v2::before { font-size: 120px; }
  .wp-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .wp-intro::before { font-size: 200px; }
  .wp-gallery { grid-template-columns: 1fr; }
  .clients-mosaic { grid-template-columns: repeat(2, 1fr); }
  .cm-cell.large, .cm-cell.mid, .cm-cell.small, .cm-cell.wide { grid-column: span 1; aspect-ratio: 1; }
  .partner-cta { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
  .full-map .pin { position: static; max-width: none; }
  .full-map { height: auto; }
  .full-map iframe { height: 360px; display: block; }
}

/* =========================================================
   ORIGINAL RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .gnb { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split .col { padding: 56px 32px; }
  .feature-split .col.image { aspect-ratio: 4/3; }
  .greeting-layout, .haccp-grid, .workplace-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 80px; }
  .philosophy-row.reverse .text-col { order: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .news-grid, .client-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .page-hero { height: 240px; }
  .page-hero h1 { font-size: 30px; }
}

/* =========================================================
   MOBILE NAVIGATION (hamburger + slide-down menu)
   ========================================================= */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .header-main .container { position: relative; }
  .nav-toggle { display: flex; }

  /* Closed state: panel hidden (overrides desktop nav/.gnb) */
  .site-header #primary-nav {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    display: none;
    background: #fff;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .site-header.nav-open #primary-nav { display: block; }
  .site-header.nav-open .gnb { display: flex; }

  .gnb {
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
  }
  .gnb > li { width: 100%; }
  .gnb > li > a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-2);
  }
  .gnb > li:last-child > a { border-bottom: 0; }
  .gnb > li.active > a::after { display: none; }

  /* Submenus: always expanded on mobile (no hover) */
  .submenu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    padding: 4px 0 8px;
    background: var(--cream-2);
    box-shadow: none;
    border: 0;
  }
  .submenu li a {
    padding: 12px 24px 12px 40px;
    font-size: 14px;
  }
  /* Touch fires :hover on tap — defeat the desktop hover transform
     (translateX -50%) so the drawer's submenu doesn't slide off when
     a parent menu item is tapped. */
  .gnb > li:hover .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  /* Tidy the slim top bar on small screens */
  .header-top .container { height: auto; padding-top: 7px; padding-bottom: 7px; gap: 12px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .header-top .container span:first-child { display: none; }
  .header-top .container { justify-content: flex-end; }
}

/* =========================================================
   SUBPAGE MOBILE OPTIMIZATION (about / business / board)
   ========================================================= */
@media (max-width: 960px) {
  /* Decorative giant ::before watermarks must not cause sideways scroll */
  body { overflow-x: clip; }

  /* Sub-navigation: scroll horizontally instead of overflowing */
  .subnav .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .subnav .container::-webkit-scrollbar { display: none; }
  .subnav a { padding: 14px 16px; font-size: 14px; white-space: nowrap; }

  /* Tighten the oversized V2 section padding */
  .focus-panel, .info-v2, .wp-intro, .clients-v2 { padding: 72px 0; }
  .greeting-v2 { padding: 72px 0 80px; }
  .timeline-v2 { padding: 56px 16px 64px; }
  .phil-v2 { padding: 64px 0 40px; }
  /* Oversized single-word label was wider than the screen → sideways scroll */
  .phil-v2 .row .text .eng {
    font-size: clamp(40px, 13vw, 72px);
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .phil-v2 .row .text h3 { font-size: 30px; }
  .phil-v2 .row .text p { max-width: 100%; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  /* Epic hero meta bar */
  .epic-hero .container { padding-bottom: 72px; }
  .epic-hero .meta .container { padding-top: 14px; padding-bottom: 14px; }
  .epic-hero .meta .crumbs { font-size: 10px; letter-spacing: 0.12em; }
  .epic-hero .meta .index { font-size: 14px; }

  /* Board: stacked header + toolbar */
  .board-v2-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .board-v2-head .left h2 { font-size: 30px; }
  .board-v2-head .right { align-self: flex-start; }
  .board-toolbar { flex-direction: column; align-items: stretch; gap: 14px; }
  .board-search { flex-wrap: wrap; }
  .board-search input { width: auto; flex: 1 1 140px; min-width: 0; }
  .board-search select { flex: 0 0 auto; }

  /* Board table: drop NO / 작성자 / 조회, keep 제목 + 등록일 */
  .board-table th:nth-child(1), .board-table td:nth-child(1),
  .board-table th:nth-child(3), .board-table td:nth-child(3),
  .board-table th:nth-child(5), .board-table td:nth-child(5) { display: none; }
  /* Fixed <col> widths reserve phantom tracks for the hidden
     columns and squash 제목 — drop them so it fills the row */
  .board-table colgroup { display: none; }
  .board-table { table-layout: auto; }
  .board-table th, .board-table td { padding: 14px 10px; font-size: 14px; }
  .board-table td.title {
    white-space: normal;
    word-break: break-word;
    font-size: 15px;
    line-height: 1.5;
  }
  .board-table th:nth-child(4), .board-table td:nth-child(4) {
    width: 96px;
    white-space: nowrap;
    color: var(--muted);
    font-size: 13px;
  }

  /* Definition table on 회사현황 */
  .info-v2-table th, .info-v2-table td { padding: 12px 8px; font-size: 14px; }
  .info-v2 .data-side::before { font-size: 120px; }

  /* business-workplace blocks */
  .haccp-points { grid-template-columns: 1fr; }
  .ccp-list .ccp { grid-template-columns: auto 1fr auto; gap: 14px; padding: 16px 0; }
  .ccp-list .ccp:hover { padding-left: 0; }
  .ccp-list .ccp .code { font-size: 18px; white-space: nowrap; }
  .ccp-list .ccp .name { min-width: 0; }

  /* News / Q&A spacing */
  .news-card .body { padding: 18px; }
  .qna-list .item summary { padding: 16px; gap: 12px; }
}

@media (max-width: 560px) {
  .news-grid, .client-grid { grid-template-columns: 1fr; }
  .clients-mosaic { grid-template-columns: 1fr; }
  .cm-cell.large, .cm-cell.mid, .cm-cell.small, .cm-cell.wide { aspect-ratio: 4 / 3; }
  .epic-hero h1 { font-size: 30px; }
  .board-v2-head .left h2 { font-size: 26px; }
  .partner-cta { padding: 36px 22px; }
  .phil-v2 .row .text .eng { font-size: 42px; }
  .tv2-row .year { font-size: clamp(64px, 18vw, 96px); }
}

/* =========================================================
   .em ACCENT — Korean-friendly
   Every .em wraps Hangul. Cormorant Garamond has no Korean
   glyphs and font-style:italic fakes an ugly slant on the
   fallback. Keep the accent color (set per-context) but use
   the Korean serif upright. !important overrides the many
   context-specific .em rules without duplicating each one.
   ========================================================= */
.em {
  font-family: "Nanum Myeongjo", serif !important;
  font-style: normal !important;
}

/* =========================================================
   FLUID TYPOGRAPHY (relative sizing via clamp)
   Appended last so source order wins over any earlier
   fixed-px rules and mobile media-query overrides. All
   selectors mirror the existing definitions, so specificity
   matches and the cascade lands on these. The clamp tiers
   are calibrated against a 360px → 1280px viewport range.
   ========================================================= */

/* --- Clean Korean wrapping everywhere prose can appear --- */
body, h1, h2, h3, h4, h5, h6, p, blockquote, li, dt, dd,
.lead, summary, .title, .ttl, .desc, .label {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* --- Display: hero h1 --- */
.cine-hero h1        { font-size: clamp(34px, 7.2vw, 96px); }
.epic-hero h1        { font-size: clamp(30px, 6vw,   80px); line-height: 1.12; }

/* --- Section h2 (large editorial heads) --- */
.focus-text h2,
.wp-intro .text h2,
.info-v2 .label-side h2,
.giant-cta h2,
.clients-v2 .head h2,
.board-v2-head .left h2 {
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.25;
}

/* --- Section h2/h3 (medium heads) --- */
.section-title h2,
.hrail .head .left h2,
.phil-v2 .row .text h3,
.scrolly-step h3,
.tv2-row .body h3,
.partner-cta h3,
.news-card h3 {
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.3;
}

/* --- Display numbers / oversized eng labels --- */
.scrolly-step .step-eng { font-size: clamp(48px, 8vw, 96px); }
.giant-cta .tel,
.partner-cta .tel       { font-size: clamp(32px, 5.4vw, 64px); }
.stat .num              { font-size: clamp(36px, 5vw, 60px); }
.board-v2-head .right .num { font-size: clamp(22px, 3vw, 36px); }

/* --- Lead paragraphs & body text --- */
.cine-hero .lead,
.epic-hero .chapter ~ .lead,
.focus-text p,
.wp-intro .text p,
.greeting-v2 .body p,
.clients-v2 .head p,
.partner-cta p,
.scrolly-step p,
.phil-v2 .row .text p {
  font-size: clamp(14.5px, 1.45vw, 17px);
  line-height: 1.75;
}

/* --- Small labels (kickers / chapters / eyebrows) --- */
.eyebrow, .chapter, .kicker,
.section-title .eyebrow,
.board-v2-head .left .chapter,
.clients-v2 .head .chapter {
  font-size: clamp(11px, 1.05vw, 13px);
}

/* --- Marquee text and minor heads --- */
.marquee-track            { font-size: clamp(18px, 2.4vw, 28px); }
.cine-foot .num           { font-size: clamp(18px, 2vw, 24px); }
.section-title p          { font-size: clamp(14px, 1.35vw, 16px); }
.news-card h3             { font-size: clamp(18px, 2.2vw, 22px); }
.qna-list .item summary .title { font-size: clamp(15px, 1.6vw, 17px); }
.board-table th, .board-table td { font-size: clamp(13px, 1.25vw, 14.5px); }
.info-v2-table th, .info-v2-table td { font-size: clamp(13px, 1.3vw, 15px); }
.hrail-card .info h4      { font-size: clamp(18px, 2.4vw, 26px); }
.edit-cell .cap .ttl      { font-size: clamp(15px, 2vw, 22px); }
.scrolly-sticky .badge-num strong { font-size: clamp(36px, 5vw, 56px); }
.focus-cert .stamp .yr    { font-size: clamp(22px, 3vw, 36px); }
.cta-banner h2            { font-size: clamp(26px, 4.8vw, 48px); line-height: 1.25; }
.manifesto blockquote     { font-size: clamp(22px, 3.4vw, 48px); }
.phone-display .num       { font-size: clamp(28px, 6vw, 108px); white-space: nowrap; }

