/* ==========================================================================
   ILLUVATION Corporate Website - Global Main CSS
   ========================================================================== */

/* --- Fonts Import (Pretendard Single Web Font via CDN) --- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--type-page-title-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--type-title-line);
  letter-spacing: -0.03em;
}
h2 {
  font-size: var(--type-section-title-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--type-heading-line);
  letter-spacing: -0.02em;
}
h3 {
  font-size: var(--type-subsection-title-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--type-heading-line);
  letter-spacing: -0.01em;
}
h4 {
  font-size: var(--type-card-title-size);
  font-weight: var(--font-weight-semibold);
  line-height: var(--type-heading-line);
}

p {
  color: var(--color-text-body);
  line-height: 1.7;
}

.text-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.text-mono {
  font-family: var(--font-family-mono);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-padding {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(21, 94, 239, 0.08);
  color: var(--color-illuvation-blue);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(21, 94, 239, 0.18);
}

.section-tag.dark {
  background-color: rgba(6, 182, 212, 0.12);
  color: var(--color-physical-cyan);
  border-color: rgba(6, 182, 212, 0.3);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-illuvation-blue);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(21, 94, 239, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-electric-blue-hover);
  box-shadow: 0 6px 20px rgba(21, 94, 239, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-text-heading);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-cloud-white);
  border-color: var(--color-text-light);
  color: var(--color-illuvation-blue);
  transform: translateY(-2px);
}

.btn-cyan {
  background-color: var(--color-physical-cyan);
  color: var(--color-corporate-navy);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
}

.btn-cyan:hover {
  background-color: #22d3ee;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-arrow svg {
  transition: transform var(--transition-base);
}

.btn-arrow:hover svg {
  transform: translateX(4px);
}

/* --- Cards --- */
.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: #CBD5E1;
}

.card-dark {
  background-color: #111827;
  border: 1px solid #1F2937;
  color: var(--color-white);
}

.card-dark:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.15);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.badge-blue {
  background-color: rgba(21, 94, 239, 0.1);
  color: var(--color-illuvation-blue);
}

.badge-cyan {
  background-color: rgba(6, 182, 212, 0.12);
  color: var(--color-physical-cyan);
}

.badge-farm {
  background-color: var(--color-accent-smartfarm-bg);
  color: var(--color-accent-smartfarm);
  border: 1px solid var(--color-accent-smartfarm-border);
}

.badge-factory {
  background-color: var(--color-accent-smartfactory-bg);
  color: var(--color-accent-smartfactory);
  border: 1px solid var(--color-accent-smartfactory-border);
}

/* ==========================================================================
   Site Header & Global Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #155EEF 0%, #06B6D4 100%);
  border-radius: 8px;
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(21, 94, 239, 0.3);
  overflow: hidden;
}

.logo-symbol-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-corporate-navy);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-illuvation-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-heading);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-illuvation-blue);
  background-color: rgba(21, 94, 239, 0.05);
}

.nav-link.highlight {
  color: var(--color-illuvation-blue);
  font-weight: 700;
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-arrow,
.nav-item:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  pointer-events: none;
  z-index: 100;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--color-cloud-white);
}

.dropdown-item-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 2px;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--color-illuvation-blue);
}

.dropdown-item-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   Language Switcher Dropdown (Desktop & Mobile)
   ========================================================================== */

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-body);
  font-family: var(--font-family-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-switcher-btn:hover,
.lang-switcher-btn:focus-visible,
.lang-switcher.is-open .lang-switcher-btn {
  background: rgba(21, 94, 239, 0.08);
  border-color: var(--color-illuvation-blue);
  color: var(--color-illuvation-blue);
  outline: none;
}

.lang-globe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
}

.lang-arrow-icon {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-arrow-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 184px;
  margin: 0;
  padding: 6px;
  list-style: none;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  box-sizing: border-box;
}

.lang-switcher.is-open .lang-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.lang-dropdown a,
.lang-option {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  color: var(--color-text-body) !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  transition: all 0.15s ease !important;
}

.lang-dropdown a:hover,
.lang-dropdown a:focus-visible,
.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(21, 94, 239, 0.08) !important;
  color: var(--color-illuvation-blue) !important;
  outline: none;
}

.lang-dropdown a.active,
.lang-dropdown a.is-active,
.lang-option.active,
.lang-option.is-active {
  background: rgba(21, 94, 239, 0.12) !important;
  color: var(--color-illuvation-blue) !important;
  font-weight: 700 !important;
}

.lang-dropdown .lang-name {
  flex: 1;
  text-align: left;
}

.lang-dropdown .lang-code {
  font-size: 0.725rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--color-text-muted);
  margin-left: 8px;
}

.lang-dropdown a.active .lang-code,
.lang-dropdown a.is-active .lang-code,
.lang-option.active .lang-code,
.lang-option.is-active .lang-code {
  background: var(--color-illuvation-blue);
  color: #ffffff;
}

/* --- Mobile Nav Language Selector --- */
.mobile-lang-wrap {
  display: none;
  padding: 16px 20px 24px;
  border-top: 1px solid var(--color-border);
  margin-top: 12px;
}

.mobile-lang-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-lang-grid a,
.mobile-lang-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 8px !important;
  background: rgba(15, 23, 42, 0.04) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 8px !important;
  color: var(--color-text-body) !important;
  text-decoration: none !important;
  font-size: 0.825rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  box-sizing: border-box !important;
  transition: all 0.15s ease !important;
}

.mobile-lang-grid a:hover,
.mobile-lang-grid a:focus-visible,
.mobile-lang-item:hover,
.mobile-lang-item:focus-visible {
  border-color: var(--color-illuvation-blue) !important;
  color: var(--color-illuvation-blue) !important;
  background: rgba(21, 94, 239, 0.06) !important;
}

.mobile-lang-grid a.active,
.mobile-lang-grid a.is-active,
.mobile-lang-item.active,
.mobile-lang-item.is-active {
  background: var(--color-illuvation-blue) !important;
  border-color: var(--color-illuvation-blue) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}


/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-corporate-navy);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.mobile-toggle.open .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open .toggle-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  background-color: var(--color-corporate-navy);
  color: #94A3B8;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-2xl);
  border-top: 1px solid #1E293B;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

/* Compatibility for legacy pages that wrap footer columns in one grid. */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-xl);
  grid-column: span 4;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu a {
  font-size: 0.875rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--color-physical-cyan);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-brand .logo-brand {
  color: var(--color-white);
}

.footer-brand .logo-tagline {
  color: var(--color-physical-cyan);
}

.footer-slogan {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #94A3B8;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #CBD5E1;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #EF4444;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-social-btn svg {
  color: #EF4444;
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-size: 0.875rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-physical-cyan);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal-links {
  display: flex;
  gap: var(--space-md);
}

.footer-legal-links a:hover {
  color: var(--color-physical-cyan);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
  }
  .footer-brand {
    grid-column: span 3;
  }
  .footer-links-grid {
    grid-column: span 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
    --container-padding: 20px;
    --space-4xl: 64px;
    --space-3xl: 48px;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-md);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-base), visibility var(--transition-base);
    box-shadow: var(--shadow-xl);
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 1.05rem;
  }

  .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--color-cloud-white);
    padding: 8px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .dropdown-menu.mobile-active,
  .nav-item:focus-within .dropdown-menu.mobile-active {
    display: block;
  }

  .header-cta {
    width: 100%;
    margin-top: var(--space-md);
  }

  .header-cta .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-links-grid {
    grid-column: span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-links-grid {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Unified Typography Role Classes & System (Single Authoritative Source)
   ========================================================================== */
.type-display {
  font-family: var(--font-family-sans);
  font-size: var(--type-display-size) !important;
  line-height: var(--type-display-line);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.055em;
}

.type-page-title {
  font-family: var(--font-family-sans);
  font-size: var(--type-page-title-size) !important;
  line-height: var(--type-title-line);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.03em;
}

.type-section-title {
  font-family: var(--font-family-sans);
  font-size: var(--type-section-title-size) !important;
  line-height: var(--type-heading-line);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
}

.type-subsection-title {
  font-family: var(--font-family-sans);
  font-size: var(--type-subsection-title-size) !important;
  line-height: var(--type-heading-line);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
}

.type-card-title {
  font-family: var(--font-family-sans);
  font-size: var(--type-card-title-size) !important;
  line-height: var(--type-heading-line);
  font-weight: var(--font-weight-semibold);
}

.type-lead {
  font-family: var(--font-family-sans);
  font-size: var(--type-lead-size);
  line-height: var(--type-body-line);
  font-weight: var(--font-weight-regular);
}

.type-body {
  font-family: var(--font-family-sans);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--font-weight-regular);
}

.type-small {
  font-family: var(--font-family-sans);
  font-size: var(--type-small-size);
  line-height: var(--type-small-line);
  font-weight: var(--font-weight-regular);
}

.type-label {
  font-family: var(--font-family-sans);
  font-size: var(--type-label-size);
  line-height: 1.2;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
