:root {
  --navy: #0e2b4d;
  --navy-deep: #061629;
  --navy-soft: #15355e;
  --gold: #c49758;
  --gold-light: #ddb478;
  --gold-deep: #a07a3e;
  --teal: #1eb5c9;
  --teal-light: #6cdce6;
  --cream: #ffffff;
  --cream-warm: #f1f3f5;
  --ink: #0a1626;
  --ink-soft: #4a5663;
  --line: #e5e7eb;
  --line-dark: rgba(255,255,255,0.12);
  --max: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: #f8f9fa;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02", "cv11";
}

.display, h1, h2, h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7.5vw, 116px); font-weight: 700; }
h2 { font-size: clamp(32px, 4.4vw, 64px); }
h3 { font-size: clamp(20px, 1.6vw, 26px); }

p { margin: 0; line-height: 1.55; text-wrap: pretty; }

.serif { font-family: "Instrument Serif", serif; font-weight: 400; font-style: italic; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ----------------- layout ----------------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 36px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

section { position: relative; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow.on-dark::before { background: var(--gold-light); }

/* ----------------- header ----------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 249, 250, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; display: block; }
.brand .wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1;
}
.brand .wordmark small {
  display: block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
}
.nav a { transition: color .15s; }
.nav a:hover { color: var(--navy); }

@media (max-width: 960px) { .nav { display: none; } }

/* ----------------- hero ----------------- */
.hero {
  padding: 56px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 200px; left: 50%;
  transform: translateX(-50%);
  width: 90%; max-width: 1200px;
  height: 480px;
  background:
    radial-gradient(50% 60% at 50% 40%, rgba(108, 220, 230, 0.28) 0%, transparent 70%),
    radial-gradient(40% 50% at 80% 60%, rgba(196, 151, 88, 0.10) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero .hero-head {
  max-width: 920px;
  margin-bottom: 56px;
}
.hero .hero-head .hero-lede {
  margin: 28px 0 0;
  max-width: 620px;
}
@media (max-width: 880px) {
  .hero .hero-head { margin-bottom: 32px; }
}

.hero h1 { color: var(--navy); }
.hero h1 .accent {
  color: var(--gold);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}
.hero h1 .accent-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--ink-soft);
  max-width: 620px;
}

.hero-banner {
  position: relative;
  aspect-ratio: 1360 / 768;
  mask-image: linear-gradient(180deg,
              transparent 0%,
              #000 7%,
              #000 84%,
              transparent 100%);
  -webkit-mask-image: linear-gradient(180deg,
              transparent 0%,
              #000 7%,
              #000 84%,
              transparent 100%);
}
.hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-meta .item {
  padding: 0 32px 0 0;
  border-right: 1px solid var(--line);
}
.hero-meta .item:last-child { border-right: 0; padding-right: 0; }
.hero-meta .item .num {
  font-family: "Inter", sans-serif;
  font-size: 36px; font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta .item .lbl {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: 1fr; padding-top: 24px; }
  .hero-meta .item { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-meta .item:last-child { border-bottom: 0; }
}

/* ----------------- trust bar ----------------- */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-warm);
}
.trustbar .row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trustbar .item {
  padding: 28px 24px;
  display: flex; align-items: center; gap: 16px;
  border-right: 1px solid var(--line);
}
.trustbar .item:last-child { border-right: 0; }
.trustbar .item .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); color: var(--gold-light);
  display: grid; place-items: center; flex: 0 0 auto;
}
.trustbar .item .l1 { font-weight: 700; font-size: 15px; color: var(--navy); }
.trustbar .item .l2 { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
@media (max-width: 880px) {
  .trustbar .row { grid-template-columns: repeat(2, 1fr); }
  .trustbar .item:nth-child(2) { border-right: 0; }
  .trustbar .item:nth-child(1), .trustbar .item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .trustbar .row { grid-template-columns: 1fr; }
  .trustbar .item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trustbar .item:last-child { border-bottom: 0; }
}

/* ----------------- section base ----------------- */
.section { padding: 120px 0; }
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 .accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 480px;
  margin-left: auto;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head p { margin-left: 0; }
}

/* ----------------- services ----------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--cream);
  padding: 32px 28px 28px;
  position: relative;
  min-height: 260px;
  display: flex; flex-direction: column;
  transition: background .25s;
}
.service-card:hover { background: #fdfaf3; }
.service-card .ico {
  width: 44px; height: 44px;
  margin: 0 0 22px;
  display: grid; place-items: center;
  color: var(--navy);
}
.service-card h3 {
  color: var(--navy);
  font-size: 22px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.service-card .tag {
  position: absolute; top: 24px; right: 24px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy-deep);
}
.service-card.coming {
  background: var(--cream-warm);
}
.service-card.coming .ico { color: var(--gold-deep); opacity: 0.8; }
.service-card.feature {
  background: var(--navy);
  color: white;
}
.service-card.feature .ico { color: var(--gold-light); }
.service-card.feature h3 { color: white; }
.service-card.feature p { color: rgba(255,255,255,0.7); }
.service-card.feature:hover { background: var(--navy-soft); }

/* ----------------- wholesale ----------------- */
.wholesale .grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .wholesale .grid { grid-template-columns: 1fr; } }

.wholesale-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.wholesale-card .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-deep);
}
.wholesale-card h3 {
  font-size: clamp(28px, 2.8vw, 40px);
  color: var(--navy);
  margin-top: 18px;
}
.wholesale-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 14px;
  max-width: 440px;
}
.wholesale-card.dark {
  background: var(--navy);
  color: white;
  border: 0;
}
.wholesale-card.dark h3 { color: white; }
.wholesale-card.dark p { color: rgba(255,255,255,0.7); }
.wholesale-card.dark .tag { color: var(--gold-light); }

.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.chip {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,43,77,0.06);
  color: var(--navy);
  font-weight: 500;
}
.wholesale-card.dark .chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}

.rate-table {
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.rate-table .row {
  display: grid; grid-template-columns: 1fr auto;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.rate-table .row .l { color: rgba(255,255,255,0.85); }
.rate-table .row .r { color: var(--gold-light); font-weight: 600; font-variant-numeric: tabular-nums; }

.china-flag {
  position: absolute;
  top: 32px; right: 32px;
  width: 70px; height: 50px;
  border-radius: 6px;
  background: linear-gradient(135deg, #DE2910, #c41818);
  display: grid; place-items: center;
  color: #FFDE00;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 24px -6px rgba(222, 41, 16, 0.4);
}

/* ----------------- process ----------------- */
.process .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .process .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process .grid { grid-template-columns: 1fr; } }

.step {
  border-top: 1px solid var(--navy);
  padding-top: 20px;
}
.step .stepnum {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.step h3 {
  margin-top: 18px;
  color: var(--navy);
}
.step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ----------------- timber teaser ----------------- */
.timber {
  background: linear-gradient(115deg, #1a1d1a 0%, #2c2c25 60%, #3a3530 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.timber::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0 1px, transparent 1px 50px);
  opacity: 0.5; pointer-events: none;
}
.timber .wrap {
  position: relative; z-index: 1;
  padding-top: 100px; padding-bottom: 100px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 880px) { .timber .wrap { grid-template-columns: 1fr; } }
.timber h2 { color: white; }
.timber h2 .accent { color: var(--gold-light); font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }
.timber p { color: rgba(255,255,255,0.7); font-size: 17px; margin-top: 20px; }
.timber .pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(196,151,88,0.18);
  border: 1px solid rgba(196,151,88,0.35);
  color: var(--gold-light);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.timber .pill .blip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(221, 180, 120, 0.22); }
  50% { box-shadow: 0 0 0 7px rgba(221, 180, 120, 0.08); }
}

.timber-rings svg { width: 100%; height: auto; max-width: 380px; }

/* ----------------- contact ----------------- */
.contact {
  background: var(--cream-warm);
}
.contact .wrap { padding-top: 120px; padding-bottom: 120px; }
@media (max-width: 720px) { .contact .wrap { padding-top: 80px; padding-bottom: 80px; } }

.contact .grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 880px) { .contact .grid { grid-template-columns: 1fr; gap: 40px; } }

.contact h2 .accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  color: var(--gold);
}
.contact-list { margin-top: 36px; }
.contact-list .item {
  display: flex; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list .item:last-child { border-bottom: 0; }
.contact-list .item .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-light);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.contact-list .item .l1 { font-weight: 700; color: var(--navy); font-size: 15px; }
.contact-list .item .l2 { color: var(--ink-soft); font-size: 14px; margin-top: 2px; }

.quote-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
}
.quote-form h3 { color: var(--navy); }
.quote-form .field {
  display: flex; flex-direction: column;
  margin-top: 18px;
}
.quote-form label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.quote-form input, .quote-form select, .quote-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-warm);
  color: var(--ink);
  outline: 0;
  transition: border .15s, background .15s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--navy);
  background: white;
}
.quote-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .quote-form .row2 { grid-template-columns: 1fr; } }
.quote-form button {
  width: 100%; margin-top: 22px; padding: 16px;
  background: var(--navy); color: white;
  border-radius: 12px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .15s;
}
.quote-form button:hover { background: var(--navy-soft); }

/* ----------------- footer ----------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.site-footer .top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 1100px) { .site-footer .top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 720px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer .top { grid-template-columns: 1fr; } }
.site-footer .col h4 {
  font-family: "Inter", sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}
.site-footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer .col a { font-size: 14px; }
.site-footer .col a:hover { color: white; }
.site-footer .brand-row {
  display: flex; align-items: center; gap: 14px;
  color: white;
}
.site-footer .brand-row svg { display: block; flex: 0 0 auto; }
.site-footer .brand-row .wm {
  font-family: "Inter", sans-serif;
  font-weight: 700; font-size: 18px; color: white; line-height: 1;
}
.site-footer .brand-row .wm small {
  display: block; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; color: var(--gold-light);
  margin-top: 5px; text-transform: uppercase;
}
.site-footer .tagline {
  margin-top: 22px; max-width: 360px;
  font-size: 14px;
}
.site-footer .legal {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
@media (max-width: 560px) { .site-footer .legal { flex-direction: column; gap: 12px; } }
