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

body {
  font-family: "Microsoft JhengHei", "Helvetica Neue", Arial, sans-serif;
  background: var(--kf-white);
  color: var(--kf-ink);
  line-height: 1.6;
  font-size: 14px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1482px; margin: 0 auto; padding: 0 32px; }

/* header: white bg, logo left, 6-item nav right, each item two lines (zh bold + en small) */
.site-header {
  background: var(--kf-white);
  border-bottom: 1px solid var(--kf-line);
}
.header-inner {
  max-width: 1482px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo-mark {
  font-size: 26px;
  font-weight: 900;
  color: var(--kf-orange);
  letter-spacing: -1px;
}
.header-logo-text { line-height: 1.3; }
.header-logo-zh { font-size: 17px; font-weight: 700; color: var(--kf-ink); }
.header-logo-en { font-size: 10px; letter-spacing: 1px; color: var(--kf-steel); }
.header-nav { display: flex; gap: 38px; }
.nav-item { text-align: center; }
.nav-zh { font-size: 15px; font-weight: 700; color: var(--kf-ink); margin-bottom: 2px; }
.nav-item:hover .nav-zh { color: var(--kf-orange); }
.nav-en { font-size: 11px; color: var(--kf-steel); }

/* hero: full-width carousel, darkened kitchen photo */
.hero { position: relative; background: var(--kf-charcoal); }
.hero-media img { width: 100%; height: 560px; object-fit: cover; opacity: .82; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.55);
  font-size: 32px;
  cursor: pointer;
}
.hero-arrow.left { left: 24px; }
.hero-arrow.right { right: 24px; }
.hero-caption {
  position: absolute;
  right: 60px;
  bottom: 50px;
  text-align: right;
  color: var(--kf-white);
}
.hero-caption-title { font-size: 30px; font-weight: 800; font-style: italic; }
.hero-caption-sub { font-size: 16px; margin-top: 6px; }

/* about: left big image with tint + list, right 3-col cards -> 4 cols total */
.about-section { background: var(--kf-cream); padding: 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}
.about-media {
  position: relative;
  height: 380px;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,99,44,.55), rgba(42,35,28,.65));
  padding: 40px 34px;
  display: flex;
  align-items: center;
}
.about-media-list { list-style: none; color: var(--kf-white); font-size: 16px; }
.about-media-list li { padding: 6px 0; }
.about-card {
  padding: 40px 26px;
  border-left: 1px solid var(--kf-line);
}
.about-card img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 20px; }
.about-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--kf-ink);
  display: inline-block;
}
.about-card-desc { font-size: 13px; color: var(--kf-steel); }

/* project: centered heading + underline, round-avatar row */
.section { padding: 80px 0; }
.section-title-center { text-align: center; margin-bottom: 50px; }
.section-title-center h2 {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--kf-ink);
}
.project-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.project-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}
.project-avatar img { width: 100%; height: 100%; object-fit: cover; }
.project-label { font-size: 14.5px; font-weight: 700; }

/* news: 4-col x 3-row card grid, date + title */
.section-alt { background: var(--kf-cream); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.news-card img { width: 100%; height: 150px; object-fit: cover; margin-bottom: 14px; }
.news-date { font-size: 13px; color: var(--kf-orange); font-weight: 700; margin-bottom: 8px; }
.news-title { font-size: 14.5px; line-height: 1.5; }
.news-more { text-align: center; margin-top: 40px; }
.news-more a {
  display: inline-block;
  border: 1px solid var(--kf-steel);
  padding: 10px 34px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* brand carousel */
.brand-section { padding: 60px 0; }
.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.brand-arrow { font-size: 24px; color: var(--kf-steel); cursor: pointer; }
.brand-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; flex: 1; }
.brand-logo {
  height: 100px;
  border: 1px solid var(--kf-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--kf-ink);
}

/* footer: tan/mocha bg, logo+address left, contact right */
.site-footer {
  background: #a9927e;
  color: var(--kf-white);
  padding: 50px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-mark { font-size: 24px; font-weight: 900; }
.footer-logo-zh { font-size: 16px; font-weight: 700; }
.footer-logo-en { font-size: 10px; opacity: .8; }
.footer-address { font-size: 13.5px; line-height: 1.9; opacity: .95; }
.footer-address a { text-decoration: underline; }
.footer-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-size: 13.5px;
}
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-social { display: flex; gap: 12px; margin-top: 30px; justify-content: flex-end; }
.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.footer-copy { font-size: 12px; margin-top: 24px; opacity: .85; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { border-left: none; border-top: 1px solid var(--kf-line); }
  .project-row, .news-grid, .brand-logos, .footer-grid, .footer-contact-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
