/* ============================================
   EcoPackify — Global Styles
   Palette:
   --forest-900: #1a3a2a (主色)
   --forest-700: #2d5a3d
   --forest-500: #3d7a52
   --cream-100: #f5f2eb (浅米背景)
   --cream-200: #e8dfd0 (米白)
   --gold-500: #c9a962 (金色点缀)
   --gold-600: #b08f4a
   --ink-900: #1a241d
   --ink-600: #4a5a50
   --ink-400: #8a968e
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

:root {
  --forest-900: #1a3a2a;
  --forest-800: #224832;
  --forest-700: #2d5a3d;
  --forest-500: #3d7a52;
  --forest-300: #7aa88a;
  --cream-100: #f5f2eb;
  --cream-200: #e8dfd0;
  --cream-300: #d8cdb8;
  --gold-500: #c9a962;
  --gold-600: #b08f4a;
  --gold-400: #d9bf82;
  --ink-900: #1a241d;
  --ink-700: #334438;
  --ink-600: #4a5a50;
  --ink-400: #8a968e;
  --ink-200: #c8cfca;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 58, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 58, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(26, 58, 42, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --nav-height: 72px;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--forest-900);
  color: var(--cream-100);
}
.btn--primary:hover {
  background: var(--forest-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border: 1.5px solid rgba(245, 242, 235, 0.4);
}
.btn--ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.btn--ghost-light {
  background: transparent;
  color: var(--cream-100);
  border: 1.5px solid rgba(245, 242, 235, 0.5);
}
.btn--ghost-light:hover {
  background: rgba(245, 242, 235, 0.1);
  border-color: var(--cream-100);
}
.btn--gold {
  background: var(--gold-500);
  color: var(--forest-900);
}
.btn--gold:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  width: 100%;
}
.btn--whatsapp:hover {
  background: #1fbf5a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn--wechat {
  background: #07C160;
  color: #fff;
  width: 100%;
}
.btn--wechat:hover {
  background: #06ad55;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(7, 193, 96, 0.3);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(26, 58, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  transition: background 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(26, 58, 42, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-100);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  color: var(--gold-500);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  position: relative;
  padding: 8px 16px;
  color: rgba(245, 242, 235, 0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold-500);
  transition: transform 0.3s ease;
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--cream-100);
}
.nav__link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: rgba(245, 242, 235, 0.8);
  font-size: 13px;
  border: 1px solid rgba(245, 242, 235, 0.2);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav__lang:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--cream-100);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- PAGES (SPA) ---- */
.page {
  display: none;

}
.page.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow--dark {
  color: var(--forest-700);
}
.eyebrow--dark::before {
  background: var(--forest-500);
}

.section-head {
  margin-bottom: 32px;
}
.section-head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-900);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--ink-600);
  line-height: 1.7;
}

/* ============================================
   HOME PAGE
   ============================================ */

/* ---- HERO CAROUSEL (首屏轮播) ---- */
.hero-carousel {
  position: relative;
  height: calc(100vh - var(--nav-height));
  min-height: 560px;
  overflow: hidden;
  background: var(--forest-900);
}
.hero-carousel__track {
  position: absolute;
  inset: 0;
}
.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 42, 0.85) 0%,
    rgba(26, 58, 42, 0.55) 50%,
    rgba(26, 58, 42, 0.4) 100%
  );
}
.hero-carousel__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}
.hero-carousel__content a,
.hero-carousel__content button {
  pointer-events: auto;
}
.hero-carousel__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-carousel__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream-100);
  margin-bottom: 20px;
  max-width: 680px;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-carousel__title span {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 500;
}
.hero-carousel__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
  color: rgba(245, 242, 235, 0.85);
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-carousel__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(26, 58, 42, 0.5);
  color: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 3;
  border: 1px solid rgba(245, 242, 235, 0.2);
}
.hero-carousel__btn:hover {
  background: var(--gold-500);
  color: var(--forest-900);
  border-color: var(--gold-500);
  transform: translateY(-50%) scale(1.08);
}
.hero-carousel__btn--prev { left: 32px; }
.hero-carousel__btn--next { right: 32px; }
.hero-carousel__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-carousel__dot {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: rgba(245, 242, 235, 0.35);
  transition: all 0.4s ease;
  cursor: pointer;
  padding: 0;
  border: none;
}
.hero-carousel__dot.is-active {
  background: var(--gold-500);
  width: 54px;
}

/* ---- PHILOSOPHY STRIP (理念条带) ---- */
.philosophy-strip {
  background: var(--forest-900);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  position: relative;
  overflow: hidden;
}
.philosophy-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
}
.philosophy-strip__inner {
  display: flex;
  align-items: stretch;
  padding: 48px 32px;
  gap: 0;
}
.philosophy-strip__item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.philosophy-strip__num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--gold-400);
  letter-spacing: 0.15em;
}
.philosophy-strip__item h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream-100);
  margin: 4px 0 4px;
}
.philosophy-strip__item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.65);
}
.philosophy-strip__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.35), transparent);
}

/* ---- CAPABILITIES ---- */
.capabilities-section {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-200) 100%);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cap-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(216, 205, 184, 0.5);
}
.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cap-card--featured {
  background: var(--forest-700);
  color: var(--cream-100);
  border-color: var(--forest-700);
}
.cap-card--featured .cap-card__num { color: var(--gold-400); }
.cap-card--featured .cap-card__title { color: var(--cream-100); }
.cap-card--featured .cap-card__text { color: rgba(245, 242, 235, 0.8); }
.cap-card--featured .cap-card__icon { color: var(--gold-400); }
.cap-card--featured .cap-card__link { color: var(--gold-400); }
.cap-card--featured .cap-card__link:hover { color: var(--cream-100); }
.cap-card__num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-400);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.cap-card__icon {
  color: var(--forest-700);
  margin-bottom: 24px;
}
.cap-card__title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--forest-900);
}
.cap-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-600);
  margin-bottom: 24px;
}
.cap-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest-700);
  transition: gap 0.2s ease;
}
.cap-card__link:hover {
  gap: 10px;
  color: var(--forest-900);
}

/* ---- SOCIAL PROOF ---- */
.proof-section {
  padding: 64px 0;
  background: var(--cream-100);
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
}
.logo-wall__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--ink-400);
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  text-align: center;
}
.logo-wall__item:hover {
  color: var(--forest-700);
}
.logo-wall__item span {
  position: relative;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  position: relative;
  transition: all 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial--featured {
  background: var(--forest-900);
  border-color: var(--forest-900);
  color: var(--cream-100);
}
.testimonial--featured .testimonial__text { color: rgba(245, 242, 235, 0.85); }
.testimonial--featured .testimonial__company { color: rgba(245, 242, 235, 0.6); }
.testimonial--featured .testimonial__quote { color: var(--gold-500); }
.testimonial--featured .testimonial__avatar {
  background: var(--gold-500);
  color: var(--forest-900);
}
.testimonial__quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold-500);
  position: absolute;
  top: 24px;
  right: 32px;
  opacity: 0.4;
}
.testimonial__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-600);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-700);
  color: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial__name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.testimonial__company {
  font-size: 13px;
  color: var(--ink-400);
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 72px 0;
  background: var(--forest-900);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--cream-100);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cta-section__sub {
  font-size: 18px;
  color: rgba(245, 242, 235, 0.75);
  margin-bottom: 36px;
}
.cta-section__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.page-hero {
  padding: 56px 0 48px;
  background: var(--forest-900);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--cream-100);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-hero__title-en {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
}
.page-hero__sub {
  font-size: 17px;
  color: rgba(245, 242, 235, 0.7);
  max-width: 560px;
  line-height: 1.8;
}

/* ---- PRODUCT TABS ---- */
.product-tabs {
  padding: 48px 0 64px;
  background: var(--cream-100);
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-200);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-600);
  transition: all 0.25s ease;
}
.tab:hover {
  color: var(--forest-700);
  background: rgba(61, 122, 82, 0.06);
}
.tab.is-active {
  background: var(--forest-900);
  color: var(--cream-100);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--cream-200);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-300);
}
.product-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-200);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.05);
}
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--forest-700);
  background: var(--cream-200);
  opacity: 0.8;
}
.product-placeholder--cool {
  color: #2a6f7a;
  background: #dfeceb;
}
.product-placeholder span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-card__body {
  padding: 24px;
}
.product-card__name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--cream-200);
}
.product-card__spec {
  font-size: 13px;
  color: var(--ink-600);
}
.product-card__moq {
  font-size: 12px;
  font-weight: 600;
  color: var(--forest-700);
  background: rgba(61, 122, 82, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ---- CRAFT NOTE ---- */
.craft-note {
  background: var(--white);
  padding: 32px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
}
.craft-note__title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 16px;
}
.craft-note__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.craft-note__tags span {
  font-size: 13px;
  color: var(--ink-700);
  padding: 6px 14px;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: 20px;
}

/* ---- SCENARIO TAGS ---- */
.scenario-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.scenario-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest-700);
  padding: 6px 16px;
  background: rgba(61, 122, 82, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(61, 122, 82, 0.15);
}

/* ---- CERTIFICATION ---- */
.cert-section {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-200) 100%);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.cert-badge {
  background: var(--white);
  padding: 36px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--cream-200);
  transition: all 0.3s ease;
}
.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}
.cert-badge__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--forest-700);
}
.cert-badge h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 6px;
}
.cert-badge p {
  font-size: 12px;
  color: var(--ink-400);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-main {
  padding: 48px 0 64px;
  background: var(--cream-100);
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
}
.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
}
.contact-form__title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--cream-100);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61, 122, 82, 0.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact-form .btn {
  margin-top: 8px;
}
.form-success {
  margin-top: 32px;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(61, 122, 82, 0.06), rgba(201, 169, 98, 0.08));
  border-radius: var(--radius-md);
  border: 1px solid var(--forest-300);
  animation: fadeIn 0.5s ease;
}
.form-success svg {
  color: var(--forest-700);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--forest-900);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--ink-600);
}

/* ---- CONTACT INFO ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info__title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 4px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
}
.contact-info__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  color: var(--gold-600);
  border-radius: 8px;
}
.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 15px;
  color: var(--forest-900);
  font-weight: 500;
  line-height: 1.6;
}
.contact-info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
}
.contact-info__hours {
  padding: 24px;
  background: var(--forest-900);
  color: var(--cream-100);
  border-radius: var(--radius-md);
}
.contact-info__hours h4 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold-400);
}
.contact-info__hours p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 242, 235, 0.8);
}

/* ---- FAQ ---- */
.faq-section {
  padding: 64px 0;
  background: var(--cream-200);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--cream-200);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item.is-open {
  border-color: var(--forest-500);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--forest-900);
  transition: all 0.2s ease;
}
.faq-question:hover {
  color: var(--forest-700);
  background: rgba(61, 122, 82, 0.03);
}
.faq-icon {
  flex-shrink: 0;
  color: var(--gold-600);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-600);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- MAP ---- */
.map-section {
  height: 360px;
  background: var(--cream-300);
}
.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background:
    linear-gradient(rgba(26, 58, 42, 0.85), rgba(26, 58, 42, 0.85)),
    repeating-linear-gradient(
      45deg,
      rgba(201, 169, 98, 0.05) 0px,
      rgba(201, 169, 98, 0.05) 2px,
      transparent 2px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(201, 169, 98, 0.05) 0px,
      rgba(201, 169, 98, 0.05) 2px,
      transparent 2px,
      transparent 20px
    );
}
.map-placeholder__pin {
  color: var(--gold-500);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.map-placeholder__text {
  color: var(--cream-100);
}
.map-placeholder__text h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-400);
}
.map-placeholder__text p {
  font-size: 14px;
  color: rgba(245, 242, 235, 0.8);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-900);
  color: var(--cream-100);
  padding-top: 48px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(245, 242, 235, 0.6);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.nav__logo--light {
  color: var(--cream-100);
}
.footer__col h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-400);
  letter-spacing: 0.03em;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(245, 242, 235, 0.7);
  transition: color 0.2s ease;
}
.footer__col a:hover {
  color: var(--gold-400);
}
.footer__col li {
  font-size: 14px;
  color: rgba(245, 242, 235, 0.7);
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(245, 242, 235, 0.1);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(245, 242, 235, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .cap-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .philosophy-strip__inner { flex-direction: column; gap: 24px; padding: 40px 24px; }
  .philosophy-strip__divider { width: 60px; height: 1px; margin: 0 auto; }
  .hero-carousel__btn--prev { left: 16px; }
  .hero-carousel__btn--next { right: 16px; }
  .hero-carousel__btn { width: 42px; height: 42px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-main__grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .carousel__track { height: 420px; }
  .carousel__btn--prev { left: 24px; }
  .carousel__btn--next { right: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  /* Nav mobile */
  .nav__links { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; flex-direction: column; background: var(--forest-900); padding: 12px 20px 20px; gap: 4px; border-bottom: 1px solid rgba(201, 169, 98, 0.15); box-shadow: 0 4px 20px rgba(0,0,0,0.2); z-index: 99; }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 12px 16px; font-size: 16px; width: 100%; }
  .nav__link::after { display: none; }
  .nav__actions .btn { display: none; }
  .nav__lang span { display: none; }
  .nav__lang { padding: 8px; }
  .nav__burger { display: flex; }

  /* Hero carousel mobile */
  .hero-carousel { height: calc(100vh - var(--nav-height)); min-height: 520px; }
  .hero-carousel__eyebrow { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }
  .hero-carousel__title { font-size: 36px; margin-bottom: 14px; }
  .hero-carousel__sub { font-size: 15px; margin-bottom: 28px; }
  .hero-carousel__ctas { gap: 10px; }
  .hero-carousel__ctas .btn { padding: 12px 20px; font-size: 14px; }
  .hero-carousel__btn { width: 38px; height: 38px; }
  .hero-carousel__btn svg { width: 18px; height: 18px; }
  .hero-carousel__btn--prev { left: 12px; }
  .hero-carousel__btn--next { right: 12px; }
  .hero-carousel__dots { bottom: 24px; gap: 6px; }
  .hero-carousel__dot { width: 24px; height: 2px; }
  .hero-carousel__dot.is-active { width: 36px; }

  /* Philosophy strip mobile */
  .philosophy-strip__inner { padding: 36px 20px; gap: 24px; }
  .philosophy-strip__item { padding: 0; }
  .philosophy-strip__item h3 { font-size: 17px; }
  .philosophy-strip__item p { font-size: 13px; }
  .philosophy-strip__divider { width: 48px; height: 1px; margin: 0 auto; }

  /* Section padding mobile */
  .capabilities-section, .proof-section, .cta-section, .product-tabs, .cert-section, .contact-main, .faq-section { padding: 60px 0; }
  .section-head { margin-bottom: 24px; }
  .section-title { font-size: 26px; margin-bottom: 8px; }
  .section-sub { font-size: 15px; }
  .cap-card, .testimonial { padding: 28px 22px; }

  /* Product grid mobile */
  .product-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cert-badge { padding: 24px 12px; }
  .cert-badge h4 { font-size: 15px; }
  .cert-badge p { font-size: 11px; }

  /* Logo wall mobile */
  .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 24px; margin-bottom: 48px; }
  .logo-wall__item { font-size: 13px; padding: 12px; }

  /* Tabs mobile */
  .tabs { max-width: 100%; padding: 4px; gap: 4px; }
  .tab { padding: 10px 8px; font-size: 13px; gap: 4px; }
  .tab svg { width: 16px; height: 16px; }

  /* Craft note mobile */
  .craft-note { padding: 24px; }
  .craft-note__tags span { font-size: 12px; padding: 5px 12px; }

  /* Scenario tags mobile */
  .scenario-tags { margin-bottom: 24px; gap: 6px; }
  .scenario-tag { font-size: 12px; padding: 5px 12px; }

  /* Contact form mobile */
  .contact-main__grid { gap: 32px; }
  .contact-form-wrap { padding: 28px 22px; }
  .contact-form__title { font-size: 22px; margin-bottom: 24px; }
  .form-field { margin-bottom: 16px; }
  .form-field input, .form-field select, .form-field textarea { padding: 10px 14px; font-size: 15px; }

  /* Contact info mobile */
  .contact-info__item { padding: 20px; }
  .contact-info__actions { padding: 20px; }
  .form-success { padding: 28px 20px; }
  .form-success h3 { font-size: 18px; }

  /* FAQ mobile */
  .faq-question { padding: 18px 20px; font-size: 14px; }
  .faq-answer { padding: 0 20px 20px; font-size: 14px; }

  /* Map mobile */
  .map-section { height: 280px; }
  .map-placeholder { flex-direction: column; gap: 16px; text-align: center; padding: 20px; }
  .map-placeholder__text h3 { font-size: 18px; }

  /* Page hero mobile */
  .page-hero { padding: 50px 0 40px; }
  .page-hero__title { font-size: 32px; margin-bottom: 12px; }
  .page-hero__sub { font-size: 15px; }

  /* Footer mobile */
  .footer { padding-top: 44px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer__brand p { margin-top: 12px; }
  .footer__col h5 { margin-bottom: 14px; }
  .footer__bottom-inner { justify-content: center; text-align: center; flex-direction: column; }

  /* CTA section mobile */
  .cta-section { padding: 64px 0; }
  .cta-section__title { font-size: 28px; margin-bottom: 12px; }
  .cta-section__sub { font-size: 15px; margin-bottom: 28px; }
  .cta-section__btns { gap: 12px; }
  .cta-section__btns .btn { padding: 12px 22px; font-size: 14px; }
}
