:root {
  --ink: #17130a;
  --text: #332a17;
  --muted: #786a51;
  --line: #eadfca;
  --gold: #d9a422;
  --gold-light: #f4e89a;
  --gold-mid: #d9b35b;
  --gold-deep: #a97808;
  --gold-shadow: #8c6423;
  --yellow: #f7c531;
  --cream: #fff8e8;
  --paper: #fffdf7;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(58, 43, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 132px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(217, 164, 34, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.brand-arrow {
  display: block;
  width: 44px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  display: inline-block;
  color: var(--gold-mid);
  font-family: Cinzel, "Trajan Pro", "Cormorant Garamond", Georgia, serif;
  font-size: 1.58rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-mid) 42%, var(--gold-deep) 74%, var(--gold-shadow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 240, 170, 0.18);
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: #4d4026;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 800;
  border-radius: 8px;
}

.header-cta {
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(169, 120, 8, 0.36);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 132px);
  overflow: hidden;
  align-items: center;
  padding: clamp(72px, 12vh, 118px) clamp(20px, 6vw, 86px);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 13, 5, 0.82), rgba(18, 13, 5, 0.42) 48%, rgba(18, 13, 5, 0.1)),
    linear-gradient(0deg, rgba(18, 13, 5, 0.48), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--gold-mid);
  font-size: clamp(2.35rem, 6.2vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.44);
}

.hero h1 span,
.footer-brand strong {
  display: inline-block;
  font-family: Cinzel, "Trajan Pro", "Cormorant Garamond", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-mid) 42%, var(--gold-deep) 74%, var(--gold-shadow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn.primary {
  color: var(--ink);
  background: var(--yellow);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  min-height: 116px;
  padding: 28px clamp(18px, 3vw, 38px);
  background: var(--ink);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--gold);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.stats-band span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 86px);
}

.split,
.section-heading,
.goals {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 1.1rem;
}

p {
  line-height: 1.75;
}

.intro-copy p,
.section-heading p,
.goal-panel p,
.contact-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-section,
.values,
.sourcing-section {
  background: var(--cream);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 42px;
}

.photo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(58, 43, 12, 0.06);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-card div {
  padding: 24px;
}

.photo-card span {
  display: block;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card h3 {
  margin-top: 10px;
}

.photo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-photo {
  grid-row: span 3;
}

.feature-photo img {
  height: 640px;
}

.photo-credit {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(58, 43, 12, 0.06);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  background: #ffe08a;
  border-radius: 8px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.supply-section {
  padding: 80px 5%;
  background: #faf8f2;
}

.supply-header {
  max-width: 820px;
  margin: 0 0 36px;
}

.supply-eyebrow {
  margin: 0 0 12px;
  color: #ba7517;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.supply-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.supply-header p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #6f6a60;
  font-size: 1.05rem;
  line-height: 1.7;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.supply-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid #e8e4da;
  border-top: 3px solid #c9a020;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(64, 46, 14, 0.06);
}

.supply-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #854f0b;
  background: #faeeda;
  border-radius: 10px;
}

.supply-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.supply-card h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
}

.supply-card p {
  margin: 0;
  color: #6f6a60;
  line-height: 1.65;
}

.supply-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.supply-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  color: #633806;
  font-size: 0.82rem;
  font-weight: 800;
  background: #faeeda;
  border-radius: 20px;
}

.mission-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: end;
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background: linear-gradient(135deg, #211704, #4f3605 48%, #91670a);
}

.mission-band span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.mission-band h2 {
  color: var(--white);
}

.mission-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-grid div {
  min-height: 128px;
  padding: 24px;
  background: var(--white);
}

.value-grid strong,
.value-grid span,
.goal-list strong,
.goal-list span {
  display: block;
}

.value-grid strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.value-grid span,
.goal-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.goal-panel {
  padding: 38px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.goal-list {
  display: grid;
  gap: 14px;
}

.goal-list div {
  padding: 24px 0 24px 24px;
  border-left: 5px solid var(--gold);
  border-bottom: 1px solid var(--line);
}

.goal-list strong {
  color: var(--ink);
  font-size: 1.16rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(60px, 9vw, 104px) clamp(20px, 6vw, 86px);
  color: var(--white);
  background: #151007;
}

.contact-section h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(247, 197, 49, 0.3);
  border-top: 3px solid #c9a020;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.contact-card a,
.contact-card p,
.contact-card span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--yellow);
  font-weight: 800;
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(247, 197, 49, 0.18);
  border-radius: 10px;
}

.contact-label {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.messaging-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.messaging-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
}

.messaging-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.viber-link {
  background: #7360f2;
}

.wechat-link {
  background: #19b33f;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label,
.contact-form label span {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(247, 197, 49, 0.32);
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 56px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--yellow) 48%, var(--gold-mid));
  border: 1px solid rgba(169, 120, 8, 0.42);
  border-radius: 8px;
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.68);
  background: #0f0b04;
}

footer strong {
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    min-height: 720px;
  }

  .stats-band,
  .service-grid,
  .value-grid,
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-photo {
    grid-row: auto;
    grid-column: span 2;
  }

  .feature-photo img {
    height: 360px;
  }

  .split,
  .section-heading,
  .goals,
  .mission-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-arrow {
    width: 38px;
    height: 46px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 680px;
    padding-top: 64px;
    align-items: end;
  }


  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18, 13, 5, 0.92), rgba(18, 13, 5, 0.38)),
      linear-gradient(90deg, rgba(18, 13, 5, 0.68), rgba(18, 13, 5, 0.16));
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-band,
  .service-grid,
  .supply-grid,
  .value-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    grid-column: auto;
  }

  .photo-card img,
  .feature-photo img {
    height: 260px;
  }

  .service-card {
    min-height: auto;
  }

  .goal-panel,
  .contact-card {
    padding: 24px;
  }
}
