@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+TC:wght@400;500;600;700;900&family=Noto+Serif+TC:wght@600;700;900&display=swap');

@font-face {
  font-family: 'WangHanZongLiShu';
  src: url('fonts/王漢宗中隸書繁.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* JSH Corporate Color Tokens */
  --c-deep-navy: #0A1628;
  --c-navy-mid: #1A2E52;
  --c-navy-pale: #F0F4F8;
  --c-asahi-crimson: #C8102E;
  --c-crimson-pale: #FDE8EB;
  --c-science-gold: #C9A84C;
  --c-gold-light: #F4E8C1;
  --c-gold-gradient: linear-gradient(135deg, #DFBA57 0%, #C9A84C 50%, #9E7D2B 100%);
  --c-pure-white: #FFFFFF;
  --c-gray-text: #374151;
  --c-gray-subtext: #6B7280;
  --c-gray-light: #FAF9F6;
  --c-border-gray: #E2E8F0;
  --c-border-subtle: rgba(10, 22, 40, 0.08);

  /* Warm Organic / Fermentation Theme Tones */
  --c-warm-amber: #D97706;
  --c-warm-bg: #FDFBF7;
  --c-warm-card: #FFFFFF;

  /* Typography */
  --font-serif: 'Noto Serif TC', serif;
  --font-sans: 'Noto Sans TC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: 'WangHanZongLiShu', 'Noto Serif TC', serif;

  /* Shadows */
  --shadow-card: 0 10px 30px -5px rgba(10, 22, 40, 0.08), 0 0 0 1px rgba(10, 22, 40, 0.04);
  --shadow-card-elevated: 0 18px 36px -8px rgba(10, 22, 40, 0.12), 0 0 0 1px rgba(201, 168, 76, 0.25);
  --shadow-glow-crimson: 0 8px 24px rgba(200, 16, 46, 0.25);
  --shadow-glow-gold: 0 8px 24px rgba(201, 168, 76, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #0F172A;
  font-family: var(--font-sans);
  color: var(--c-gray-text);
  line-height: 1.7;
  display: flex;
  justify-content: center;
  padding: 0;
}

/* Master Canvas fixed to 1500px width */
.canvas-container {
  width: 1500px;
  background-color: var(--c-pure-white);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   1. BRAND HEADER
   ========================================================================== */
.brand-header {
  background-color: var(--c-deep-navy);
  padding: 24px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--c-science-gold);
}

.brand-header__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-header__logo-icon {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.brand-header__title-group {
  display: flex;
  flex-direction: column;
}

.brand-header__company-zh {
  font-family: var(--font-logo);
  font-size: 32px;
  color: var(--c-pure-white);
  letter-spacing: 2px;
  line-height: 1.2;
}

.brand-header__company-en {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--c-gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-header__origin-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-pure-white);
  font-size: 17px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.brand-header__origin-tag .flag-circle {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.brand-header__origin-tag .flag-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #C8102E;
  border-radius: 50%;
}

/* ==========================================================================
   2. HERO BANNER
   ========================================================================== */
.hero-section {
  position: relative;
  height: 700px;
  background-color: #3B2E1E;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  filter: saturate(1.15) brightness(1.18);
}

.hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(18, 12, 6, 0.76) 0%, 
    rgba(18, 12, 6, 0.52) 46%, 
    rgba(18, 12, 6, 0.05) 100%),
    linear-gradient(0deg, rgba(18, 12, 6, 0.35) 0%, transparent 60%);
}

.hero-section__content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 1320px;
}

.hero-section__series-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 16, 46, 0.95);
  color: var(--c-pure-white);
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: var(--shadow-glow-crimson);
}

/* 大標題維持氣派尺寸 */
.hero-section__title {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 900;
  color: var(--c-pure-white);
  line-height: 1.25;
  margin-bottom: 22px;
  letter-spacing: 1px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

.hero-section__title span.gold-highlight {
  background: var(--c-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none;
}

/* 副標題調大 */
.hero-section__subtitle {
  font-size: 23px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.7;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

/* ==========================================================================
   3. VALUE CARDS STRIP
   ========================================================================== */
.concept-strip {
  background: linear-gradient(180deg, #1C1814 0%, #26201A 100%);
  padding: 65px 80px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.concept-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.concept-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 36px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--c-gold-gradient);
}

.concept-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--c-pure-white);
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.35;
  background: linear-gradient(135deg, #FFFFFF 0%, #F4E8C1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.concept-card__desc {
  font-size: 20px;
  color: #E2E8F0;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   4. INGREDIENT SHOWCASE SECTIONS
   ========================================================================== */
.showcase-header {
  text-align: center;
  padding: 80px 80px 50px;
  background-color: var(--c-warm-bg);
  position: relative;
}

.showcase-header__eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-asahi-crimson);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* 大標題維持大氣 */
.showcase-header__title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 900;
  color: var(--c-deep-navy);
  letter-spacing: 1px;
}

.showcase-header__desc {
  font-size: 22px;
  color: var(--c-gray-text);
  margin-top: 14px;
  font-weight: 500;
}

/* Individual Ingredient Block Styles */
.ingredient-block {
  padding: 75px 80px;
  position: relative;
  background-color: var(--c-pure-white);
  border-bottom: 1px solid var(--c-border-gray);
}

.ingredient-block:nth-child(even) {
  background-color: #FAFAF8;
}

.ingredient-block__grid {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 65px;
  align-items: center;
}

.ingredient-block--reversed .ingredient-block__grid {
  grid-template-columns: 1fr 580px;
}

.ingredient-block--reversed .ingredient-block__image-col {
  order: 2;
}

.ingredient-block--reversed .ingredient-block__info-col {
  order: 1;
}

/* Image Showcase Column */
.ingredient-block__image-col {
  position: relative;
}

.ingredient-block__image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card-elevated);
  border: 1px solid rgba(201, 168, 76, 0.35);
  background-color: #F8FAFC;
}

.ingredient-block__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.ingredient-block__image-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--c-science-gold);
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-gold-light);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ingredient-block__image-badge .dot {
  width: 9px;
  height: 9px;
  background: var(--c-asahi-crimson);
  border-radius: 50%;
  display: inline-block;
}

.ingredient-block__spec-stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.95) 0%, rgba(150, 10, 30, 0.95) 100%);
  color: var(--c-pure-white);
  padding: 14px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-glow-crimson);
  text-align: right;
}

.ingredient-block__spec-stamp-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.ingredient-block__spec-stamp-val {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
}

/* Info Column */
.ingredient-block__info-col {
  display: flex;
  flex-direction: column;
}

.ingredient-block__top-meta {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 16px;
}

.ingredient-block__index {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--c-science-gold);
  background: var(--c-navy-pale);
  padding: 5px 16px;
  border-radius: 8px;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ingredient-block__category-pill {
  background: var(--c-crimson-pale);
  color: var(--c-asahi-crimson);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ingredient-block__series-pill {
  background: var(--c-navy-pale);
  color: var(--c-navy-mid);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ingredient-block__name {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 900;
  color: var(--c-deep-navy);
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  word-break: keep-all;
}

.ingredient-block__en-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-gray-subtext);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.ingredient-block__punchline {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-asahi-crimson);
  line-height: 1.45;
  margin-bottom: 18px;
  border-left: 4px solid var(--c-asahi-crimson);
  padding-left: 16px;
}

.ingredient-block__lead {
  font-size: 19px;
  color: var(--c-gray-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Claim Tags Row */
.ingredient-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.claim-tag {
  background: var(--c-warm-bg);
  color: #1E293B;
  border: 1px solid #CBD5E1;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ==========================================================================
   5. WELLNESS / FOR A BETTER YOU SECTION
   ========================================================================== */
.wellness-section {
  padding: 90px 80px;
  background: linear-gradient(180deg, #FDFBF7 0%, #F5EFE6 100%);
  border-bottom: 1px solid var(--c-border-gray);
  position: relative;
}

.wellness-grid {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 65px;
  align-items: center;
}

.wellness-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card-elevated);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.wellness-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.wellness-content {
  display: flex;
  flex-direction: column;
}

.wellness-eyebrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-warm-amber);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* 大標題維持適當大氣 */
.wellness-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 900;
  color: var(--c-deep-navy);
  line-height: 1.3;
  margin-bottom: 20px;
}

.wellness-lead {
  font-size: 19px;
  color: var(--c-gray-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.wellness-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wellness-concept-box {
  background: var(--c-pure-white);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.04);
}

.wellness-concept-box__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-asahi-crimson);
  margin-bottom: 8px;
}

.wellness-concept-box__desc {
  font-size: 16px;
  color: var(--c-gray-subtext);
  line-height: 1.6;
}

/* ==========================================================================
   6. OEM/ODM SERVICE SUPPORT
   ========================================================================== */
.service-section {
  padding: 85px 80px;
  background-color: var(--c-deep-navy);
  color: var(--c-pure-white);
  position: relative;
  overflow: hidden;
}

.service-section::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.service-section__head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 55px;
}

.service-section__eyebrow {
  color: var(--c-science-gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* 大標題維持適當大氣 */
.service-section__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.service-section__desc {
  font-size: 20px;
  color: #CBD5E1;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 34px 26px;
  text-align: center;
}

.service-card__icon-box {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--c-science-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-light);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--c-pure-white);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.65;
}

/* ==========================================================================
   7. FOOTER CALL TO ACTION & CONTACT
   ========================================================================== */
.footer-cta {
  background: linear-gradient(135deg, #122036 0%, #1D2E4A 100%);
  padding: 60px 80px 50px;
  border-top: 2px solid var(--c-science-gold);
  color: var(--c-pure-white);
}

.footer-cta__box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 20px;
  padding: 44px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.footer-cta__text-group {
  max-width: 760px;
}

.footer-cta__title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 900;
  color: var(--c-pure-white);
  margin-bottom: 12px;
}

.footer-cta__desc {
  font-size: 18px;
  color: #CBD5E1;
  line-height: 1.7;
}

.footer-cta__button-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-btn-primary {
  background: var(--c-asahi-crimson);
  color: var(--c-pure-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-glow-crimson);
  letter-spacing: 1px;
}

.cta-btn-ghost {
  background: transparent;
  color: var(--c-gold-light);
  border: 1px solid var(--c-science-gold);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.footer-company-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-company-info__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo-icon {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-company-text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-company-name-zh {
  font-family: var(--font-logo);
  font-size: 28px;
  color: var(--c-pure-white);
  letter-spacing: 1.5px;
}

.footer-company-name-en {
  font-size: 15px;
  color: var(--c-gold-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}

.footer-company-info__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 16px;
  color: #CBD5E1;
}

.footer-copyright {
  font-size: 14px;
  color: #94A3B8;
  letter-spacing: 0.5px;
}
