.elementor-1960 .elementor-element.elementor-element-fea531c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DEFAULT THEME CONFIGURATION --- */
:root {
  --primary-navy: #203B46;
  --accent-orange: #C76832;
  --accent-orange-light: #FCE8DB;
  --peach-bg-soft: #FCE8DB;
  --border-soft: #E9EFF1;
  --off-white: #F8F9FA;
  --white: #ffffff;
  --text-main: #2D3732;
  --text-muted: #738A95;
  --radius-service: 16px;
  --radius-normal: 8px;
  --font-heading: 'Outfit', 'Playfair Display', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* --- PAGE THEME VARIATIONS --- */
body.jirai-page {
  --primary-navy: #1a1a1a;
  --accent-orange: #c2446e;
  --accent-orange-light: #fdf0f5;
  --peach-bg-soft: #fdf0f5;
  --border-soft: #e8d5df;
  --off-white: #faf8f9;
  --text-main: #2d2d2d;
  --text-muted: #666666;
}

body.korean-minimalist-page {
  --primary-navy: #111410;
  --accent-orange: #3d5a3e;
  --accent-orange-light: #e8f0e8;
  --peach-bg-soft: #f2ede4;
  --border-soft: #ddd8cc;
  --off-white: #f8f6f1;
  --text-main: #3a3d35;
  --text-muted: #6b6f64;
}

body.maillard-page {
  --primary-navy: #3d1f0a;
  --accent-orange: #c8864a;
  --accent-orange-light: #f5efe6;
  --peach-bg-soft: #faf7f2;
  --border-soft: #e0c9aa;
  --off-white: #faf7f2;
  --text-main: #5c2e0a;
  --text-muted: #9e7a58;
}

/* --- GLOBAL RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

/* --- STICKY NAVIGATION --- */
.sticky-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
  padding: 14px 0;
}

.sticky-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.sticky-nav-inner::-webkit-scrollbar {
  display: none;
}

.sticky-nav a {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.sticky-nav a:hover, .sticky-nav a.active {
  color: var(--primary-navy);
  background: var(--accent-orange-light);
}

/* --- CORE LAYOUT --- */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .two-col {
    grid-template-columns: 2.2fr 1fr;
  }
}

/* --- ARTICLE SECTIONS --- */
.article-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-soft);
}

.article-section:first-of-type {
  padding-top: 20px;
}

.article-section:last-of-type {
  border-bottom: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 800;
}

h2.section-title {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  margin-bottom: 24px;
}

.article-section h3 {
  font-size: clamp(19px, 3vw, 23px);
  margin: 36px 0 16px;
  font-weight: 700;
}

p {
  margin-bottom: 20px;
  color: var(--text-main);
}

a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-navy);
}

strong {
  font-weight: 700;
  color: var(--primary-navy);
}

/* --- LABELS & HIGHLIGHTS --- */
.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 12px;
}

.highlight {
  color: var(--accent-orange);
  position: relative;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- PULL QUOTE --- */
.pull-quote {
  border-left: 3px solid var(--accent-orange);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--peach-bg-soft);
  border-radius: 0 var(--radius-service) var(--radius-service) 0;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 17.5px;
  font-style: italic;
  line-height: 1.55;
  color: var(--primary-navy);
  margin-bottom: 0;
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  padding-left: 28px;
  margin: 36px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-soft);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border-soft);
}

/* TIMELINE CUSTOM YEAR IN REDESIGNS */
.timeline-dot-year {
  position: absolute;
  left: -38px;
  top: 2px;
  background: var(--accent-orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  border: 2px solid var(--white);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.01);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* --- GRIDS & CARDS --- */
.outfit-grid, .pieces-grid, .principles-grid, .districts-grid, .brands-grid, .texture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.outfit-card, .piece-card, .principle-card, .district-card, .brand-card, .texture-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.outfit-card:hover, .piece-card:hover, .principle-card:hover, .district-card:hover, .brand-card:hover, .texture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(32, 59, 70, 0.08);
  border-color: var(--accent-orange);
}

.outfit-thumb, .piece-icon, .principle-icon, .texture-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-normal);
  background: var(--accent-orange-light);
}

.outfit-body, .piece-body, .principle-body, .district-body, .brand-body, .texture-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.outfit-body h4, .piece-card h4, .piece-name, .principle-name, .district-name, .brand-name, .texture-name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.outfit-body p, .piece-card p, .piece-detail, .principle-desc, .district-body p, .brand-desc, .texture-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.tag, .brand-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-orange);
  background: var(--accent-orange-light);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* --- SWATCHES WIDGET --- */
.swatch-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.swatch-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 2;
}

/* --- BARCHART SYSTEM --- */
.chart-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.01);
}

.chart-box h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.chart-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bar-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.bar-row:last-child {
  margin-bottom: 0;
}

.bar-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  width: 64px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 32px;
  background: var(--off-white);
  border-radius: var(--radius-normal);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-soft);
}

.bar-fill {
  height: 100%;
  background: var(--primary-navy);
  width: 0;
  display: flex;
  align-items: center;
  padding-left: 12px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-normal);
}

.bar-val {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--white);
}

/* --- METRIC STAT GRIDS --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.01);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 8px;
}

.stat-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- MODERN TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  overflow: hidden;
}

th {
  background: var(--primary-navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 20px;
}

td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: var(--off-white);
}

/* --- FAQ ACCORDION --- */
.faq-accordion, .faq-list {
  margin: 32px 0;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--accent-orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}

.faq-btn, .faq-question, .faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-btn:hover, .faq-question:hover, .faq-q:hover {
  background: var(--off-white);
}

.faq-item.open .faq-btn, .faq-item.open .faq-question, .faq-item.open .faq-q {
  background: var(--peach-bg-soft);
  color: var(--primary-navy);
}

.faq-icon, .faq-arrow {
  font-size: 18px;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon, .faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

/* FOR DOWN ARROW FAQ ARROWS */
.faq-arrow.down-arrow-style {
  transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow.down-arrow-style {
  transform: rotate(180deg);
}

.faq-answer, .faq-ans, .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--white);
}

.faq-item.open .faq-answer, .faq-item.open .faq-ans, .faq-item.open .faq-a {
  max-height: 500px;
}

.faq-answer p, .faq-ans p, .faq-a p {
  padding: 18px 24px 22px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- SIDEBAR COMPONENTS --- */
aside {
  position: relative;
}

.sidebar-inner {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sb-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.01);
}

.sb-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--border-soft);
  padding-bottom: 8px;
}

.sb-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sb-card li {
  margin-bottom: 0;
}

.sb-card a {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sb-card a:hover {
  color: var(--accent-orange);
}

.source-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.source-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.source-item a {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
  line-height: 1.4;
}

.source-badge {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.sb-dark-card {
  background: var(--primary-navy);
  border-radius: var(--radius-service);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(32, 59, 70, 0.12);
  color: var(--white);
}

.sb-dark-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.sb-dark-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sb-dark-card a {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sb-dark-card a:hover {
  color: var(--accent-orange-light);
}

/* --- CUSTOM INTERACTIVE WIDGETS --- */

/* Tab Selector (Jirai Kei Outfit, Maillard Formulas) */
.outfit-tabs, .formula-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.outfit-tab, .formula-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--accent-orange);
  background: transparent;
  color: var(--accent-orange);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.outfit-tab.active, .outfit-tab:hover, .formula-tab.active, .formula-tab:hover {
  background: var(--accent-orange);
  color: var(--white);
}

.outfit-content, .formula-panel {
  display: none;
}

.outfit-content.active, .formula-panel.active {
  display: block;
  animation: tabFadeUp 0.3s ease;
}

@keyframes tabFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.outfit-items, .formula-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.outfit-item, .formula-pill {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-normal);
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.outfit-item-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.outfit-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 3px;
}

.outfit-item-detail {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Layering steps list */
.layering-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  overflow: hidden;
}

.layer-step {
  display: flex;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.layer-step:last-child {
  border-bottom: none;
}

.layer-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.layer-num {
  width: 56px;
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.layer-body {
  padding: 20px 24px;
  background: var(--white);
  flex-grow: 1;
}

.layer-body h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.layer-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Districts & Brands specific custom elements */
.district-header {
  background: var(--accent-orange);
  padding: 16px 20px;
  color: var(--white);
  margin: -24px -24px 20px -24px;
}

.district-header h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.district-korean {
  font-size: 12px;
  opacity: 0.75;
  letter-spacing: 1px;
}

.acubi-box {
  background: var(--primary-navy);
  border-radius: var(--radius-service);
  padding: 32px;
  margin: 36px 0;
  color: var(--white);
}

.acubi-box h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px;
}

.acubi-box p {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.acubi-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acubi-link-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.acubi-link-pill:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

/* Interactive steak scale */
.steak-scale {
  display: flex;
  border-radius: var(--radius-service);
  overflow: hidden;
  height: 90px;
  margin: 32px 0;
  border: 1px solid var(--border-soft);
}

.steak-level {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: flex 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.steak-level:last-child {
  border-right: none;
}

.steak-level:hover {
  flex: 2.2;
}

.steak-level-inner {
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 8px;
}

.steak-level:hover .steak-level-inner {
  opacity: 1;
}

.steak-level-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
}

.steak-level-color {
  font-size: 10px;
  opacity: 0.8;
  white-space: nowrap;
}

/* Numbered Step cards (Makeup steps) */
.makeup-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.makeup-step {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-service);
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.makeup-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number, .step-dot {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.step-body h4 {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Source list badge color mapping */
.sources {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 48px 0;
}

.sources-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.sources-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 20px;
}

.sources ol {
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 32px;
}

.sources li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sources a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: underline;
}

.sources a:hover {
  color: var(--accent-orange);
}

/* --- MOBILE BREAKPOINTS --- */
@media (max-width: 768px) {
  .sticky-nav-inner {
    justify-content: flex-start;
    padding: 0 16px;
  }
  .page-wrap {
    padding: 0 16px 40px;
  }
  .timeline {
    padding-left: 20px;
  }
  .timeline::before {
    left: 4px;
  }
  .timeline-dot {
    left: -20px;
  }
  .timeline-dot-year {
    left: -26px;
    font-size: 9px;
    padding: 2px 6px;
  }
  .steak-scale {
    height: 72px;
  }
  .steak-level-color {
    display: none;
  }
}/* End custom CSS */