/* ==========================================================================
   WoodWhisper — design system
   Self-contained. No external fonts/CDNs. Served entirely by nginx.
   ========================================================================== */

:root {
  /* Brand palette — warm walnut + honey-amber + sage (distinct from reference) */
  --walnut:       #2a1c11;
  --walnut-soft:  #3d2a1a;
  --honey:        #c8842d;
  --honey-dark:   #a96a1d;
  --honey-light:  #e8b56b;
  --sage:         #5f7355;
  --sage-dark:    #47573f;
  --cream:        #faf6ef;
  --cream-2:      #f3ebdd;
  --cream-3:      #ece0cc;
  --line:         #e7ddcc;
  --ink:          #2a1c11;
  --muted:        #7c6f5f;
  --muted-soft:   #9a8d7c;
  --white:        #ffffff;

  --radius:   16px;
  --radius-lg: 26px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(42,28,17,.07), 0 1px 2px rgba(42,28,17,.04);
  --shadow:    0 10px 30px -12px rgba(42,28,17,.18);
  --shadow-lg: 0 24px 60px -20px rgba(42,28,17,.30);

  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;

  --container: 1200px;
}

/* ----- reset ----- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; color: var(--walnut); letter-spacing: -.01em; }

/* ----- layout helpers ----- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.bg-cream2 { background: var(--cream-2); }
.bg-walnut { background: var(--walnut); color: #f4ece0; }
.bg-sage  { background: var(--sage); color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 14px;
}
.bg-walnut .eyebrow { color: var(--honey-light); }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }
.bg-walnut .section-head h2 { color: #fff; }
.bg-walnut .section-head p { color: #c9bca9; }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  min-height: 48px; transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--honey); color: var(--walnut); box-shadow: 0 8px 20px -8px rgba(200,132,45,.6); }
.btn-primary:hover { background: var(--honey-dark); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--walnut); color: #fff; }
.btn-dark:hover { background: var(--walnut-soft); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid currentColor; color: var(--walnut); }
.btn-outline:hover { background: var(--walnut); color: #fff; border-color: var(--walnut); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--walnut); }
.btn-lg { padding: 16px 34px; font-size: 16.5px; min-height: 56px; border-radius: 12px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-name { font-family: var(--font-serif); font-size: 21px; font-weight: 700; color: var(--walnut); letter-spacing: -.02em; }
.brand-name b { color: var(--honey-dark); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--walnut-soft); position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--honey); transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--walnut); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 10px; }
.nav-toggle:hover { background: var(--cream-2); }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--walnut); }

/* mobile drawer */
.mobile-menu { display: none; }
@media (max-width: 880px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    display: block; position: fixed; inset: 70px 0 auto 0; z-index: 99;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: flex; justify-content: space-between; align-items: center;
    padding: 16px 22px; font-weight: 500; border-bottom: 1px solid var(--line); }
  .mobile-menu a:hover { background: var(--cream-2); }
  .mobile-menu .btn { margin: 16px 22px; display: flex; }
}

/* ==========================================================================
   Hero carousel
   ========================================================================== */
.hero { position: relative; min-height: min(86vh, 660px); overflow: hidden; background: var(--walnut); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease, transform 6s ease;
  transform: scale(1.06);
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28,18,10,.86) 0%, rgba(28,18,10,.55) 42%, rgba(28,18,10,.12) 100%);
}
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 2; }
.hero-content .container { width: 100%; }
.hero-text { max-width: 640px; }

/* 右对齐变体:文字靠右 + 遮罩翻转(右深左浅),避免左侧主体被压字 */
.hero-slide--right .scrim {
  background: linear-gradient(260deg, rgba(28,18,10,.86) 0%, rgba(28,18,10,.55) 42%, rgba(28,18,10,.12) 100%);
}
.hero-slide--right .hero-content .container { display: flex; justify-content: flex-end; }
.hero-slide--right .hero-text { margin-left: auto; text-align: right; }
.hero-slide--right .hero-actions { justify-content: flex-end; }
@media (max-width: 700px) {
  /* 手机窄屏:统一回到左对齐,避免右对齐在小屏挤压 */
  .hero-slide--right .hero-content .container { justify-content: flex-start; }
  .hero-slide--right .hero-text { text-align: left; margin-left: 0; }
  .hero-slide--right .hero-actions { justify-content: flex-start; }
  .hero-slide--right .scrim { background: linear-gradient(100deg, rgba(28,18,10,.86) 0%, rgba(28,18,10,.55) 42%, rgba(28,18,10,.12) 100%); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--honey-light); }
.hero h1 { color: #fff; font-size: clamp(34px, 6vw, 62px); line-height: 1.05; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--honey-light); }
.hero p { color: rgba(255,255,255,.88); font-size: clamp(16px, 2vw, 20px); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.45); transition: all .3s ease; }
.hero-dots button.active { width: 30px; background: var(--honey-light); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; color: #fff;
  backdrop-filter: blur(4px); transition: background .2s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,.3); }
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }
@media (max-width: 700px) { .hero-arrow { display: none; } }

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust { background: var(--walnut); border-top: 1px solid rgba(255,255,255,.06); }
.trust .container { display: flex; flex-wrap: wrap; gap: 18px 48px; align-items: center; justify-content: center;
  padding-block: 26px; }
.trust span { color: #cbbba4; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 9px; }
.trust span svg { width: 18px; height: 18px; stroke: var(--honey-light); }

/* ==========================================================================
   Cards & grids
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

/* category card */
.cat-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease; display: block;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card .ph { aspect-ratio: 3/2.1; overflow: hidden; background: var(--cream-2); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card .body { padding: 24px; }
.cat-card h3 { font-size: 21px; }
.cat-card:hover h3 { color: var(--honey-dark); }
.cat-card p { color: var(--muted); font-size: 14.5px; margin-top: 9px; }
.cat-card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--honey-dark); }
.cat-card .more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.cat-card:hover .more svg { transform: translateX(4px); }

/* product card */
.prod-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod-card .ph { aspect-ratio: 1/1; overflow: hidden; background: var(--cream-2); position: relative; }
.prod-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.prod-card:hover img { transform: scale(1.07); }
.prod-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(250,246,239,.92); color: var(--walnut-soft);
  font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px;
  letter-spacing: .02em;
}
.prod-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.prod-card h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; line-height: 1.35; }
.prod-card .desc { color: var(--muted); font-size: 13.5px; margin-top: 7px; flex: 1; }
.prod-meta { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.prod-meta b { display: block; font-family: var(--font-sans); font-size: 13px; color: var(--walnut); font-weight: 700; }
.prod-meta small { color: var(--muted-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.prod-card .more { margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--honey-dark);
  display: inline-flex; align-items: center; gap: 6px; }
.prod-card .more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.prod-card:hover .more svg { transform: translateX(3px); }

/* feature / capability tiles */
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .ico {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--cream-2); margin-bottom: 18px;
}
.feature .ico svg { width: 27px; height: 27px; stroke: var(--honey-dark); }
.feature h3 { font-size: 18.5px; }
.feature p { color: var(--muted); font-size: 14.5px; margin-top: 9px; }

/* small icon tile (capabilities) */
.cap { text-align: center; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 16px; transition: transform .25s, box-shadow .25s; }
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cap .ico { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 50%; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center; }
.cap .ico svg { width: 25px; height: 25px; stroke: var(--sage-dark); }
.cap h4 { font-family: var(--font-sans); font-size: 14.5px; font-weight: 600; }

/* audience chip cards */
.aud { border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.aud .emoji { font-size: 34px; }
.aud h3 { font-size: 18px; margin-top: 12px; }
.aud p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ==========================================================================
   Split feature (image + text)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-text h2 { font-size: clamp(26px, 3.5vw, 38px); }
.split-text p { color: var(--muted); margin-top: 16px; font-size: 16.5px; }
.split-text .ticks { margin-top: 22px; display: grid; gap: 12px; }
.split-text .ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--walnut-soft); font-size: 15.5px; }
.split-text .ticks svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--sage); margin-top: 1px; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }
.stat .num { font-family: var(--font-serif); font-size: clamp(34px, 5vw, 52px); font-weight: 700; color: var(--honey); line-height: 1; }
.bg-walnut .stat .num { color: var(--honey-light); }
.stat .lbl { margin-top: 10px; font-size: 14px; color: var(--muted); font-weight: 500; }
.bg-walnut .stat .lbl { color: #c9bca9; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step .n { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: #fff;
  width: 40px; height: 40px; border-radius: 50%; background: var(--sage); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 18px; }
.step p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote-card .stars { color: var(--honey); font-size: 16px; letter-spacing: 2px; }
.quote-card blockquote { font-size: 16px; color: var(--walnut-soft); margin-top: 16px; flex: 1; line-height: 1.6; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote-card .av { width: 44px; height: 44px; border-radius: 50%; background: var(--sage);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-serif); }
.quote-card .who b { font-size: 14.5px; }
.quote-card .who small { display: block; color: var(--muted); font-size: 12.5px; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; text-align: left; font-weight: 600; font-size: 16.5px; color: var(--walnut); font-family: var(--font-sans); }
.faq-q .pm { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform .3s ease; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--honey-dark);
  top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform .3s ease; }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: 15.5px; }

/* ==========================================================================
   CTA bands
   ========================================================================== */
.cta-honey { background: linear-gradient(115deg, var(--honey) 0%, var(--honey-light) 100%); text-align: center; }
.cta-honey h2 { color: var(--walnut); font-size: clamp(26px, 4vw, 40px); }
.cta-honey p { color: rgba(42,28,17,.78); max-width: 560px; margin: 14px auto 26px; font-size: 17px; }
.cta-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-bottom: 30px; }
.cta-points span { color: rgba(42,28,17,.8); font-size: 14.5px; font-weight: 500; display: inline-flex; gap: 7px; align-items: center; }
.cta-points svg { width: 18px; height: 18px; stroke: var(--walnut); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { background: var(--walnut); color: #fff; padding-block: clamp(56px, 8vw, 96px); text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background:
  radial-gradient(60% 80% at 80% 0%, rgba(200,132,45,.22), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); }
.page-hero p { color: #cbbba4; max-width: 600px; margin: 16px auto 0; font-size: 17px; }
.crumbs { font-size: 13px; color: var(--honey-light); margin-bottom: 14px; letter-spacing: .03em; }
.crumbs a:hover { color: #fff; }

/* ==========================================================================
   Products page toolbar + filters
   ========================================================================== */
.toolbar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filters button { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); font-size: 14px; font-weight: 500; color: var(--walnut-soft); transition: all .2s ease; }
.filters button:hover { border-color: var(--honey); color: var(--honey-dark); }
.filters button.active { background: var(--walnut); color: #fff; border-color: var(--walnut); }
.sortbar { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.sortbar select { padding: 9px 14px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--white);
  font: inherit; font-size: 14px; color: var(--walnut); }
.result-count { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* ==========================================================================
   Product detail
   ========================================================================== */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .pd { grid-template-columns: 1fr; } }
.pd-gallery .main { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--cream-2); }
.pd-gallery .main img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pd-info .cat-link { color: var(--honey-dark); font-weight: 600; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.pd-info h1 { font-size: clamp(26px, 3.5vw, 36px); margin: 10px 0 16px; }
.pd-info .lead { color: var(--muted); font-size: 16.5px; }
.pd-badges { display: flex; gap: 22px; margin: 24px 0; padding: 20px 0; border-block: 1px solid var(--line); flex-wrap: wrap; }
.pd-badges .b small { color: var(--muted-soft); font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; }
.pd-badges .b b { display: block; font-family: var(--font-serif); font-size: 20px; color: var(--walnut); margin-top: 3px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
.spec-table th { color: var(--muted); font-weight: 500; width: 42%; }
.spec-table td { color: var(--walnut); font-weight: 500; }
.pd-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--walnut-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 15px; color: var(--walnut); background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--honey); box-shadow: 0 0 0 3px rgba(200,132,45,.15); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field.row2 { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none; background: #eef4ea; border: 1px solid #cfe0c4; color: var(--sage-dark);
  padding: 16px 18px; border-radius: 12px; font-size: 15px; margin-bottom: 18px; align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; stroke: var(--sage); flex-shrink: 0; }

/* contact info list */
.info-list { display: grid; gap: 20px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--cream-2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; }
.info-list .ico svg { width: 22px; height: 22px; stroke: var(--honey-dark); }
.info-list small { color: var(--muted-soft); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; }
.info-list b { display: block; font-family: var(--font-sans); font-size: 15.5px; color: var(--walnut); font-weight: 600; margin-top: 2px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .ph { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post-card:hover img { transform: scale(1.06); }
.post-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { font-size: 12.5px; color: var(--honey-dark); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { font-size: 20px; margin: 10px 0; line-height: 1.3; }
.post-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.post-card .more { margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--walnut); display: inline-flex; gap: 6px; align-items: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--walnut); color: #c9bca9; padding-top: clamp(48px, 6vw, 76px); padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-name { color: #fff; }
.site-footer .f-about { font-size: 14.5px; margin-top: 16px; line-height: 1.7; max-width: 320px; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: 15px; margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 11px; }
.site-footer a:hover { color: var(--honey-light); }
.site-footer .f-links a { font-size: 14.5px; }
.f-contact li { display: flex; gap: 10px; font-size: 14.5px; margin-bottom: 11px; }
.f-contact svg { width: 18px; height: 18px; stroke: var(--honey-light); flex-shrink: 0; margin-top: 2px; }
.f-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: #9a8d7c; }
.f-bottom a:hover { color: var(--honey-light); }

/* floating whatsapp */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  transition: transform .2s; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* ==========================================================================
   Quote modal
   ========================================================================== */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(28,18,10,.55); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--cream); border-radius: var(--radius-lg); max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto; }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 26px 26px 0; }
.modal-head h3 { font-size: 23px; }
.modal-head p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.modal-close { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--cream-2); }
.modal-close svg { width: 22px; height: 22px; stroke: var(--walnut); }
.modal form { padding: 22px 26px 28px; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: opacity .4s ease; transform: none; }
  html { scroll-behavior: auto; }
}

/* utilities */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
.lead { font-size: 18px; color: var(--muted); }
.prose p { margin-bottom: 16px; color: var(--walnut-soft); font-size: 16.5px; line-height: 1.75; }
.prose h2 { font-size: 26px; margin: 32px 0 14px; }
.prose ul { margin: 0 0 16px; display: grid; gap: 8px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--walnut-soft); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--honey); }
