:root {
  color-scheme: light;
  --ink: #181716;
  --muted: #68625d;
  --soft: #f6f3ef;
  --paper: #fbfaf8;
  --panel: #ffffff;
  --line: #ddd7cf;
  --rose: #b76f7d;
  --plum: #6f5360;
  --sage: #708878;
  --moss: #39493f;
  --gold: #b08b45;
  --charcoal: #242322;
  --shadow: 0 24px 60px rgba(30, 28, 26, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; color: var(--muted); line-height: 1.65; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: 0; }
ul { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.6; }
table { width: 100%; border-collapse: collapse; background: var(--panel); }
th, td { border-bottom: 1px solid var(--line); padding: 14px 16px; text-align: left; vertical-align: top; }
th { background: var(--charcoal); color: #fff; font-weight: 800; }
.topbar { min-height: 38px; display: grid; place-items: center; padding: 8px 18px; background: var(--charcoal); color: #fff; font-size: 13px; text-align: center; }
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { font-size: 23px; font-weight: 900; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 23px; color: var(--muted); font-size: 14px; }
.nav-links a:hover, .footer a:hover, .breadcrumb a:hover { color: var(--rose); }
.nav-actions { display: flex; gap: 8px; }
.icon-btn {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
}
.icon-btn:hover { border-color: var(--rose); color: var(--rose); }
.mobile-nav { display: none; border: 1px solid var(--line); background: var(--panel); border-radius: 8px; padding: 9px 10px; font-weight: 800; color: var(--ink); }
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22, 18, 16, .78), rgba(22, 18, 16, .31) 58%, rgba(22, 18, 16, .05)); }
.hero-content { position: relative; z-index: 1; width: min(780px, 92vw); padding: 0 clamp(20px, 6vw, 82px) 12vh; color: #fff; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; color: #f5d9df; font-weight: 900; font-size: 12px; }
.hero h1 { margin-top: 14px; font-size: clamp(42px, 8vw, 90px); line-height: .96; }
.hero p { margin-top: 18px; color: rgba(255,255,255,.88); font-size: clamp(17px, 2.2vw, 22px); max-width: 650px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}
.btn:hover { background: var(--rose); border-color: var(--rose); }
.btn.light { background: #fff; color: var(--ink); border-color: #fff; }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.78); }
.btn.soft { background: var(--soft); color: var(--ink); border-color: var(--line); }
.proof { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: #fff; }
.proof div { padding: 24px clamp(16px, 3vw, 36px); border-right: 1px solid var(--line); }
.proof strong { display: block; font-size: 24px; color: var(--ink); }
.proof span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
.band { padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px); }
.band.alt { background: var(--soft); }
.band.dark { background: var(--charcoal); color: #fff; }
.band.dark p { color: rgba(255,255,255,.76); }
.inner { width: min(1180px, 100%); margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(28px, 4vw, 52px); }
.section-head p { max-width: 560px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .2s ease; }
.media { background: #e9e4de; overflow: hidden; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.method-card .media { height: 380px; }
.product-card .media { height: 320px; }
.card-body { padding: 18px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.meta { color: var(--rose); font-weight: 850; font-size: 13px; margin-top: 12px; }
.small-meta { color: var(--muted); font-size: 13px; }
.goal-card { min-height: 190px; padding: 22px; }
.goal-card h3 { margin-bottom: 12px; }
.compare-wrap, .content-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.shade-band { background: #f5e7e9; }
.shade-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.swatches { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.swatch { min-height: 150px; border-radius: 8px; display: flex; align-items: end; padding: 12px; color: #fff; font-weight: 850; border: 1px solid rgba(0,0,0,.12); }
.s1 { background: #15100d; } .s2 { background: #3c241a; } .s3 { background: #765139; } .s4 { background: #c59661; } .s5 { background: linear-gradient(135deg, #211916, #cbb89d); }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.page-hero { padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px); background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(34px, 5vw, 64px); max-width: 860px; }
.page-hero p { margin-top: 16px; max-width: 720px; font-size: 18px; }
.collection-hero { display: grid; grid-template-columns: 1fr .72fr; gap: 32px; align-items: center; }
.collection-hero img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.product-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, .85fr); gap: 34px; align-items: start; }
.product-main-image { aspect-ratio: 1 / 1; background: #eee8e1; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.gallery-grid > * { display: block; aspect-ratio: 1 / 1; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #eee8e1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.product-summary { position: sticky; top: 92px; }
.product-summary h1 { font-size: clamp(31px, 4.4vw, 54px); }
.price { font-size: 24px; font-weight: 900; margin: 18px 0 4px; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.pill { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font-size: 13px; }
.product-detail-html { margin-top: 44px; }
.product-detail-html section, .rich-content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
}
.product-detail-html h2, .rich-content h1, .rich-content h2 { font-size: clamp(26px, 3.5vw, 42px); margin: 0 0 16px; }
.product-detail-html h3, .rich-content h3 { font-size: 22px; margin: 28px 0 10px; }
.product-detail-html p + p, .rich-content p + p { margin-top: 12px; }
.product-detail-html table { margin-top: 14px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.variant-table { margin-top: 26px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.notice { margin-top: 16px; padding: 14px 16px; border: 1px solid #ead0d5; border-radius: 8px; background: #fff6f7; color: var(--plum); line-height: 1.55; }
.guide-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.guide-strip a { padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.footer {
  padding: 44px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 28px; }
.footer h2 { font-size: 24px; letter-spacing: .08em; }
.footer h3 { font-size: 14px; margin-bottom: 12px; }
.footer a, .footer p { display: block; color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.subfooter { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.site-map-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.site-map-list a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-nav { display: inline-flex; }
  .proof, .grid-2, .grid-3, .grid-4, .shade-layout, .collection-hero, .product-layout, .footer-inner, .site-map-list { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .method-card .media, .product-card .media { height: 280px; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .product-summary { position: static; }
  table { font-size: 14px; }
  th, td { padding: 11px; }
}

.zh-kicker { color: var(--rose); font-weight: 900; margin-bottom: 10px; }
.zh-note-list { display: grid; gap: 12px; margin-top: 18px; }
.zh-note-list div { padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.zh-mini-title { font-weight: 900; color: var(--ink); margin-bottom: 5px; }
.sales-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--line); background: #fff; }
.sales-strip a { display: grid; grid-template-rows: auto auto 1fr; gap: 10px; padding: 12px 12px 18px; border-right: 1px solid var(--line); }
.sales-strip img { width: 100%; aspect-ratio: 1 / .72; object-fit: cover; border-radius: 8px; background: #eee8e1; }
.sales-strip strong { display: block; font-size: 22px; color: var(--ink); }
.sales-strip span { display: block; color: var(--muted); font-size: 13px; line-height: 1.55; }
.sales-strip a:hover strong { color: var(--rose); }
.home-split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: center; }
.home-split h2, .closing-cta h2 { font-size: clamp(32px, 5vw, 64px); }
.lead, .home-split .lead { font-size: clamp(18px, 2.2vw, 23px); color: var(--ink); margin-top: 18px; }
.feature-stack { display: grid; grid-template-columns: .86fr 1fr; gap: 14px; align-items: stretch; }
.feature-image { min-height: 430px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #eee8e1; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.buying-reasons { display: grid; gap: 12px; }
.buyer-card { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.buyer-card b { display: grid; place-items: center; width: 34px; aspect-ratio: 1; border-radius: 999px; background: var(--charcoal); color: #fff; font-size: 14px; }
.buyer-card strong { display: block; margin-bottom: 5px; font-size: 18px; }
.result-card .media { height: 300px; }
.result-tag { display: inline-flex; margin-bottom: 9px; color: var(--rose); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.result-card .result-line { color: var(--ink); font-weight: 850; margin-top: 12px; }
.trust-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: stretch; }
.image-panel { min-height: 520px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: #eee8e1; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.trust-card { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.trust-card strong { display: block; font-size: 20px; margin-bottom: 8px; }
.decision-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.decision-card { display: grid; grid-template-columns: .92fr 1fr; min-height: 250px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.decision-card img { width: 100%; height: 100%; object-fit: cover; background: #eee8e1; }
.decision-card div { padding: 20px; align-self: center; }
.decision-card span { display: block; margin-bottom: 10px; color: var(--rose); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.decision-card strong { display: block; margin-bottom: 10px; font-size: 24px; line-height: 1.05; color: var(--ink); }
.decision-table td:first-child { font-weight: 900; color: var(--ink); }
.shade-visual { display: grid; gap: 12px; }
.shade-visual > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid rgba(0,0,0,.12); border-radius: 8px; background: #eee8e1; }
.objection-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.objection-grid div { padding: 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; background: rgba(255,255,255,.08); }
.objection-grid strong { display: block; color: #fff; font-size: 18px; margin-bottom: 8px; }
.closing-cta { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; padding: clamp(34px, 5vw, 54px); border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.selling-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.selling-card { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.selling-card strong { display: block; font-size: 20px; margin-bottom: 9px; color: var(--ink); }
.page-hero .result-tag { margin-bottom: 14px; }
.page-hero .btn-row { margin-top: 24px; }
.page-visual { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); background: #eee8e1; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.choice-card { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.choice-card h3 { font-size: 22px; margin-bottom: 9px; }
.choice-card .meta { margin-top: 14px; }
.product-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.product-benefit-grid div { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.product-benefit-grid strong { display: block; color: var(--ink); font-size: 19px; margin-bottom: 8px; }
.product-buy-box { margin-top: 22px; padding: 18px; border: 1px solid #ead0d5; border-radius: 8px; background: #fff6f7; }
.product-buy-box strong { display: block; color: var(--plum); font-size: 18px; margin-bottom: 6px; }
.page-cta { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.page-cta h2 { font-size: clamp(26px, 3.2vw, 40px); }
.guide-image-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.guide-image-layout img { width: 100%; aspect-ratio: 4 / 3.7; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; background: #eee8e1; }
.guide-steps { display: grid; gap: 12px; }
.guide-steps article { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.guide-steps h2 { font-size: 22px; margin-bottom: 8px; }
@media (max-width: 980px) {
  .sales-strip, .home-split, .feature-stack, .trust-layout, .trust-grid, .decision-cards, .decision-card, .objection-grid, .closing-cta, .selling-grid, .choice-grid, .product-benefit-grid, .page-cta, .guide-image-layout { grid-template-columns: 1fr; }
  .sales-strip a { border-right: 0; border-bottom: 1px solid var(--line); }
  .image-panel { min-height: 320px; }
  .feature-image { min-height: 320px; }
  .decision-card { min-height: 0; }
  .decision-card img { aspect-ratio: 16 / 10; height: auto; }
  .page-cta { align-items: start; }
}

.card-cta{display:inline-flex;align-items:center;margin-top:15px;min-height:40px;padding:0 15px;border:1px solid var(--ink);border-radius:8px;background:var(--ink);color:#fff;font-size:13px;font-weight:900;letter-spacing:0;text-transform:uppercase;}
.card-cta::after{content:">";margin-left:8px;}
.card:hover .card-cta{background:var(--rose);border-color:var(--rose);}

/* Homepage redesign inspired by Perfect Locks: editorial hero, tight shopping paths, and method-led merchandising. */
body {
  background: #faf8f5;
  overflow-x: hidden;
}
.topbar {
  min-height: 34px;
  background: #171412;
  color: #f7efe8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav {
  min-height: 76px;
  background: rgba(250, 248, 245, .96);
  border-bottom: 1px solid rgba(23, 20, 18, .12);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 950;
}
.brand::before {
  content: "S";
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #171412;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
}
.nav-links {
  gap: clamp(16px, 2.4vw, 30px);
  color: #302a25;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.icon-btn {
  width: auto;
  min-width: 42px;
  padding: 0 12px;
  border-color: rgba(23, 20, 18, .18);
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.hero {
  min-height: clamp(620px, 86vh, 820px);
  align-items: center;
  background:
    linear-gradient(90deg, #171412 0%, #221b18 44%, rgba(34, 27, 24, .35) 70%, rgba(34, 27, 24, .06) 100%),
    #171412;
}
.hero img {
  left: 38%;
  width: 62%;
  object-position: center;
  opacity: .96;
}
.hero::after {
  background:
    radial-gradient(circle at 80% 12%, rgba(255,255,255,.2), transparent 22%),
    linear-gradient(90deg, rgba(23,20,18,.92) 0%, rgba(23,20,18,.78) 35%, rgba(23,20,18,.16) 68%, rgba(23,20,18,.02) 100%);
}
.hero-content {
  width: min(720px, 92vw);
  padding: 8vh clamp(22px, 6vw, 88px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #f0d8c8;
  font-size: 11px;
}
.hero h1 {
  max-width: 680px;
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 500;
  line-height: .9;
}
.hero p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.7vw, 20px);
}
.btn {
  min-height: 48px;
  border-radius: 4px;
  padding: 0 23px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
.btn.light {
  background: #f8f1e8;
  border-color: #f8f1e8;
}
.btn.ghost {
  border-color: rgba(255,255,255,.42);
  color: #fff;
}
.sales-strip {
  width: min(1280px, calc(100% - 48px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(23,20,18,.14);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 24px 70px rgba(31, 24, 20, .14);
  overflow: hidden;
}
.sales-strip a {
  min-height: 212px;
  padding: 14px 18px 18px;
  border-right: 1px solid rgba(23,20,18,.12);
  gap: 9px;
  align-content: start;
}
.sales-strip img {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}
.sales-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 500;
}
.sales-strip span {
  color: #5e554c;
  font-size: 13px;
  line-height: 1.45;
}
.band {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 76px);
}
.band.alt {
  background: #f0ebe4;
}
.section-head {
  margin-bottom: 34px;
  align-items: end;
}
.section-head h2,
.home-split h2,
.closing-cta h2,
.trust-layout h2,
.shade-layout h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: #171412;
}
.section-head h2 {
  max-width: 640px;
  font-size: clamp(34px, 4.8vw, 64px);
}
.section-head p {
  color: #5e554c;
}
.grid-3 {
  gap: 20px;
}
.card {
  border: 1px solid rgba(23,20,18,.12);
  border-radius: 8px;
  background: #fffdf9;
}
.card:hover {
  box-shadow: 0 24px 60px rgba(30, 24, 20, .13);
  transform: translateY(-3px);
}
.method-card {
  position: relative;
}
.method-card .media {
  height: 440px;
}
.method-card .card-body {
  min-height: 190px;
  padding: 22px;
}
.method-card h3,
.product-card h3,
.decision-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.result-tag {
  color: #9b5f45;
  font-size: 11px;
  font-weight: 950;
}
.home-split {
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(34px, 5vw, 70px);
}
.zh-kicker {
  color: #9b5f45;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lead,
.home-split .lead {
  color: #302a25;
  font-size: clamp(18px, 2vw, 22px);
}
.feature-stack {
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
}
.feature-image,
.image-panel {
  border-radius: 8px;
  border-color: rgba(23,20,18,.12);
  box-shadow: 0 20px 60px rgba(31, 24, 20, .10);
}
.buyer-card,
.trust-card,
.selling-card,
.choice-card {
  border-radius: 8px;
  border-color: rgba(23,20,18,.12);
  background: #fffdf9;
}
.buyer-card b {
  background: #171412;
}
.product-card .media,
.result-card .media {
  height: 340px;
  background: #f2ece4;
}
.product-card .media img {
  object-fit: cover;
}
.product-card .card-body {
  padding: 20px;
}
.card-cta {
  min-height: 42px;
  border-radius: 4px;
  background: #171412;
}
.decision-cards {
  gap: 20px;
}
.decision-card {
  min-height: 300px;
  border-radius: 8px;
  border-color: rgba(23,20,18,.12);
  box-shadow: 0 16px 50px rgba(31, 24, 20, .08);
}
.decision-card div {
  padding: 24px;
}
.trust-layout {
  grid-template-columns: .96fr 1.04fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.trust-grid {
  gap: 16px;
}
.trust-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.shade-band {
  background: #e8ded2;
}
.shade-layout {
  grid-template-columns: 1fr 1fr;
}
.shade-visual > img {
  border-radius: 8px;
  border-color: rgba(23,20,18,.12);
  aspect-ratio: 16 / 8.5;
}
.swatch {
  min-height: 110px;
  border-radius: 6px;
}
.band.dark {
  background: #171412;
}
.objection-grid {
  gap: 16px;
}
.objection-grid div {
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.closing-cta {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,253,249,.95), rgba(255,253,249,.88)),
    url("../assets/generated/home-benefit-shade-confidence-square.png") center / cover;
  box-shadow: 0 24px 70px rgba(31, 24, 20, .12);
}

@media (max-width: 1100px) {
  .sales-strip {
    width: min(820px, calc(100% - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sales-strip a:nth-child(2) {
    border-right: 0;
  }
  .sales-strip a:nth-child(-n+2) {
    border-bottom: 1px solid rgba(23,20,18,.12);
  }
}
@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .home-split,
  .feature-stack,
  .trust-layout,
  .trust-grid,
  .decision-cards,
  .decision-card,
  .objection-grid,
  .closing-cta,
  .selling-grid,
  .choice-grid,
  .product-benefit-grid,
  .page-cta,
  .guide-image-layout,
  .shade-layout,
  .collection-hero,
  .product-layout,
  .footer-inner,
  .site-map-list {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 680px;
    align-items: end;
  }
  .hero img {
    left: 0;
    width: 100%;
    object-position: 64% center;
  }
  .hero::after {
    background: linear-gradient(0deg, rgba(23,20,18,.92) 0%, rgba(23,20,18,.72) 45%, rgba(23,20,18,.18) 100%);
  }
  .hero-content {
    padding-bottom: 86px;
  }
  .sales-strip {
    margin-top: -42px;
  }
  .method-card .media,
  .product-card .media,
  .result-card .media {
    height: 320px;
  }
  .feature-image,
  .image-panel {
    min-height: 320px;
  }
  .decision-card {
    min-height: 0;
  }
  .decision-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }
  .closing-cta,
  .page-cta {
    align-items: start;
  }
}
@media (max-width: 640px) {
  .topbar {
    font-size: 11px;
  }
  .nav {
    min-height: 66px;
    padding: 0 14px;
    gap: 10px;
  }
  .brand {
    font-size: 18px;
    min-width: 0;
  }
  .brand::before {
    width: 32px;
  }
  .nav-actions {
    flex: 0 0 auto;
    gap: 6px;
  }
  .nav-actions .icon-btn {
    display: none;
  }
  .mobile-nav {
    display: inline-flex;
    align-items: center;
  }
  .icon-btn,
  .mobile-nav {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }
  .hero {
    min-height: 640px;
  }
  .hero-content {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero h1 {
    max-width: 340px;
    font-size: clamp(42px, 12vw, 52px);
    line-height: .94;
    overflow-wrap: normal;
  }
  .hero p {
    max-width: 330px;
    font-size: 15px;
  }
  .sales-strip {
    grid-template-columns: 1fr;
  }
  .sales-strip a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23,20,18,.12);
  }
  .sales-strip a:last-child {
    border-bottom: 0;
  }
  .sales-strip img {
    aspect-ratio: 16 / 6.5;
  }
  .band {
    padding: 58px 18px;
  }
  .section-head h2 {
    font-size: 34px;
  }
}

/* SISIYUYU homepage v3: Perfect Locks-inspired component blueprint. */
.pl-home {
  --pl-ink: #171717;
  --pl-soft-ink: #383533;
  --pl-muted: #68625d;
  --pl-paper: #ffffff;
  --pl-warm: #f3f1eb;
  --pl-line: #e1ded8;
  --pl-magenta: #bd18c7;
  --pl-deep: #4f063f;
  margin: 0;
  background: var(--pl-paper);
  color: var(--pl-ink);
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
.pl-home h1,
.pl-home h2,
.pl-home h3,
.pl-home p {
  margin: 0;
  letter-spacing: 0;
}
.pl-home p {
  color: var(--pl-soft-ink);
  line-height: 1.58;
}
.pl-home a {
  color: inherit;
  text-decoration: none;
}
.pl-announcement {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 16px;
  background: #efeee9;
  color: #4b4642;
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}
.pl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 3vw, 44px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--pl-line);
  backdrop-filter: blur(12px);
}
.pl-header-left,
.pl-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pl-header-left {
  display: none;
}
.pl-header-actions {
  justify-content: flex-end;
}
.pl-brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .06em;
}
.pl-brand span {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pl-ink);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}
.pl-nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 36px);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.pl-icon-link,
.pl-bag {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.pl-bag b {
  display: inline-grid;
  place-items: center;
  width: 18px;
  aspect-ratio: 1;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--pl-magenta);
  color: #fff;
  font-size: 11px;
}
.pl-hero {
  position: relative;
  min-height: 650px;
  background: #eee8d9;
  overflow: hidden;
}
.pl-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  opacity: 0;
  animation: plHeroFade 30s infinite;
}
.pl-hero-slide:nth-child(1) { animation-delay: 0s; }
.pl-hero-slide:nth-child(2) { animation-delay: 6s; }
.pl-hero-slide:nth-child(3) { animation-delay: 12s; }
.pl-hero-slide:nth-child(4) { animation-delay: 18s; }
.pl-hero-slide:nth-child(5) { animation-delay: 24s; }
.pl-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(44px, 7vw, 110px);
  transform: translateY(18px);
  animation: plCopyLift 30s infinite;
}
.pl-hero-slide:nth-child(1) .pl-hero-copy { animation-delay: 0s; }
.pl-hero-slide:nth-child(2) .pl-hero-copy { animation-delay: 6s; }
.pl-hero-slide:nth-child(3) .pl-hero-copy { animation-delay: 12s; }
.pl-hero-slide:nth-child(4) .pl-hero-copy { animation-delay: 18s; }
.pl-hero-slide:nth-child(5) .pl-hero-copy { animation-delay: 24s; }
@keyframes plHeroFade {
  0%, 18% { opacity: 1; }
  22%, 100% { opacity: 0; }
}
@keyframes plCopyLift {
  0%, 18% { opacity: 1; transform: translateY(0); }
  22%, 100% { opacity: 0; transform: translateY(-8px); }
}
.pl-hero-copy h1 {
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.14;
}
.pl-hero-copy p {
  max-width: 520px;
  margin-top: 22px;
  font-size: clamp(17px, 1.4vw, 22px);
}
.pl-hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  overflow: hidden;
}
.pl-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: plHeroImageZoom 30s infinite;
}
.pl-hero-slide:nth-child(1) .pl-hero-media img { animation-delay: 0s; }
.pl-hero-slide:nth-child(2) .pl-hero-media img { animation-delay: 6s; }
.pl-hero-slide:nth-child(3) .pl-hero-media img { animation-delay: 12s; }
.pl-hero-slide:nth-child(4) .pl-hero-media img { animation-delay: 18s; }
.pl-hero-slide:nth-child(5) .pl-hero-media img { animation-delay: 24s; }
@keyframes plHeroImageZoom {
  0%, 4% { transform: scale(1.03); }
  8%, 20% { transform: scale(1.09); }
  24%, 100% { transform: scale(1.09); }
}
.pl-primary-btn,
.pl-secondary-btn,
.pl-light-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 32px;
  border-radius: 4px;
  border: 1px solid var(--pl-ink);
  background: var(--pl-ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pl-secondary-btn {
  background: var(--pl-ink);
  color: #fff !important;
}
.pl-light-btn {
  background: #fff;
  color: var(--pl-ink) !important;
  border-color: #fff;
}
.pl-slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  gap: 11px;
}
.pl-slider-dots span {
  width: 38px;
  height: 2px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.42);
}
.pl-slider-dots span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: #fff;
  animation: plDotFill 30s infinite;
}
.pl-slider-dots span:nth-child(1)::after { animation-delay: 0s; }
.pl-slider-dots span:nth-child(2)::after { animation-delay: 6s; }
.pl-slider-dots span:nth-child(3)::after { animation-delay: 12s; }
.pl-slider-dots span:nth-child(4)::after { animation-delay: 18s; }
.pl-slider-dots span:nth-child(5)::after { animation-delay: 24s; }
@keyframes plDotFill {
  0%, 5% { width: 0; }
  6%, 18% { width: 100%; }
  19%, 100% { width: 0; }
}
.pl-proof-strip {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--pl-line);
  background: #f7f6f2;
}
.pl-proof-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 18px;
  border-right: 1px solid #cfcac2;
  color: #44403d;
  transition: background .22s ease, color .22s ease;
}
.pl-proof-strip a:hover {
  background: #fff;
  color: #111;
}
.pl-proof-strip a:last-child {
  border-right: 0;
}
.pl-proof-icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--pl-ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.pl-proof-strip strong {
  font-size: 15px;
  font-weight: 650;
}
.pl-section {
  padding: clamp(70px, 8vw, 112px) clamp(22px, 4vw, 64px);
}
.pl-section-head {
  width: min(1180px, 100%);
  margin: 0 auto 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.pl-section-head.pl-centered {
  display: block;
  max-width: 720px;
  text-align: center;
}
.pl-section-head h2,
.pl-story-copy h2,
.pl-event h2,
.pl-final-match h2 {
  color: var(--pl-ink);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 850;
  line-height: 1.08;
}
.pl-section-head p {
  max-width: 560px;
  margin-top: 18px;
  font-size: 17px;
}
.pl-method-grid {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.pl-method-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  color: #fff;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease;
}
.pl-method-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.pl-method-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.68), rgba(0,0,0,.12) 64%, rgba(0,0,0,.02));
}
.pl-method-card span,
.pl-method-card strong,
.pl-method-card p {
  position: relative;
  z-index: 2;
  color: #fff !important;
}
.pl-method-card span {
  align-self: start;
  margin: 18px 18px 0;
  padding: 7px 11px;
  border-radius: 4px;
  background: var(--pl-ink);
  color: #fff !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pl-method-card:nth-child(3) span,
.pl-method-card:nth-child(5) span {
  background: var(--pl-magenta);
}
.pl-method-card strong {
  margin: auto 18px 6px;
  font-size: 28px;
  line-height: 1;
}
.pl-method-card p {
  margin: 0 18px 20px;
  color: rgba(255,255,255,.9) !important;
  font-size: 14px;
}
.pl-method-card:hover img {
  transform: scale(1.04);
}
.pl-method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(20, 18, 16, .18);
}
.pl-center-action {
  display: flex;
  justify-content: center;
}
.pl-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: #f4f2ee;
}
.pl-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 92px);
}
.pl-story-copy p {
  max-width: 640px;
  margin-top: 18px;
  font-size: 17px;
}
.pl-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  margin-top: 42px;
}
.pl-mini-grid div {
  display: grid;
  gap: 8px;
}
.pl-mini-grid span {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--pl-line);
  font-size: 11px;
  font-weight: 900;
}
.pl-mini-grid strong {
  font-size: 18px;
}
.pl-mini-grid p {
  margin: 0;
  font-size: 14px;
}
.pl-product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.pl-product-card {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border: 1px solid var(--pl-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform .24s ease, box-shadow .24s ease;
}
.pl-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  background: #f4f1ed;
  transition: transform .28s ease;
}
.pl-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(20, 18, 16, .11);
}
.pl-product-card:hover img {
  transform: scale(1.035);
}
.pl-product-card span,
.pl-product-card strong,
.pl-product-card p,
.pl-product-card em {
  margin-left: 16px;
  margin-right: 16px;
}
.pl-product-card span {
  margin-top: 6px;
  color: #9d5b42;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pl-product-card strong {
  min-height: 48px;
  font-size: 17px;
  line-height: 1.18;
}
.pl-product-card p {
  color: var(--pl-soft-ink);
  font-size: 14px;
}
.pl-product-card em {
  color: #a44b5f;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}
.pl-texture,
.pl-transform,
.pl-final-match {
  padding: clamp(86px, 10vw, 150px) 22px;
  background: #f1f0ec;
  text-align: center;
}
.pl-learn {
  min-height: 560px;
}
.pl-guide-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pl-guide-grid a {
  display: grid;
  gap: 14px;
  text-align: center;
  font-weight: 850;
}
.pl-guide-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .28s ease, filter .28s ease;
}
.pl-guide-grid a:hover img {
  transform: translateY(-4px) scale(1.02);
  filter: contrast(1.04);
}
.pl-event {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 70px 22px;
  background: var(--pl-deep);
  color: #fff;
  text-align: center;
}
.pl-event div {
  max-width: 720px;
}
.pl-event span,
.pl-transform span,
.pl-final-match span {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.pl-event h2 {
  color: #fff;
}
.pl-event p {
  margin-top: 16px;
  color: rgba(255,255,255,.84);
}
.pl-event-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
  color: #fff;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 12px;
}
.pl-transform {
  background: #fff;
}
.pl-transform-grid {
  width: min(1040px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.pl-transform-grid div {
  padding: 24px;
  border: 1px solid var(--pl-line);
  border-radius: 8px;
}
.pl-transform-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}
.pl-final-match {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding-left: clamp(24px, 8vw, 120px);
  padding-right: clamp(24px, 8vw, 120px);
  text-align: left;
}
.pl-final-match p {
  margin-top: 12px;
}
.pl-final-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.pl-link-btn {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pl-ink) !important;
}
.pl-footer {
  padding: 54px clamp(22px, 5vw, 74px) 24px;
  background: #f6f5f2;
  border-top: 1px solid var(--pl-line);
}
.pl-footer-top,
.pl-footer-links {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}
.pl-footer-top {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.pl-footer h2 {
  font-size: 28px;
  letter-spacing: .08em;
}
.pl-footer p {
  max-width: 460px;
  margin-top: 10px;
  font-size: 14px;
}
.pl-newsletter label {
  display: block;
  margin-bottom: 12px;
  font-weight: 850;
}
.pl-newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
}
.pl-newsletter input {
  min-height: 46px;
  border: 1px solid var(--pl-line);
  padding: 0 14px;
  background: #fff;
}
.pl-newsletter button {
  min-height: 46px;
  border: 1px solid var(--pl-ink);
  background: var(--pl-ink);
  color: #fff;
  padding: 0 18px;
  font-weight: 850;
  text-transform: uppercase;
}
.pl-footer-links {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}
.pl-footer h3 {
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pl-footer a {
  display: block;
  color: var(--pl-muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.pl-subfooter {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--pl-line);
  color: var(--pl-muted);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .pl-header {
    grid-template-columns: 1fr auto 1fr;
  }
  .pl-header-left {
    display: flex;
  }
  .pl-brand {
    grid-column: 2;
    justify-self: center;
  }
  .pl-header-actions {
    grid-column: 3;
  }
  .pl-nav-links {
    display: none;
  }
  .pl-method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pl-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .pl-home,
  .pl-home main,
  .pl-hero,
  .pl-section,
  .pl-story,
  .pl-texture,
  .pl-transform,
  .pl-final-match,
  .pl-footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .pl-announcement {
    font-size: 13px;
  }
  .pl-header {
    min-height: 58px;
    padding: 0 14px;
    grid-template-columns: 1fr auto 1fr;
  }
  .pl-header-left .pl-icon-link:nth-child(2),
  .pl-header-actions .pl-icon-link {
    display: none;
  }
  .pl-brand {
    justify-self: center;
    font-size: 15px;
  }
  .pl-brand span {
    width: 34px;
  }
  .pl-hero {
    min-height: 700px;
    background: #e7e4da;
  }
  .pl-hero-slide {
    display: flex;
    flex-direction: column;
  }
  .pl-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    order: 1;
  }
  .pl-hero-copy {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    order: 2;
    padding: 28px 22px 64px;
    text-align: center;
  }
  .pl-hero-copy h1 {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: normal;
  }
  .pl-hero-copy p {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    white-space: normal;
  }
  .pl-slider-dots {
    bottom: 330px;
  }
  .pl-proof-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    min-height: 62px;
  }
  .pl-proof-strip a {
    min-width: 245px;
    width: 245px;
    flex: 0 0 245px;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    scroll-snap-align: start;
  }
  .pl-proof-strip strong {
    font-size: 12px;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }
  .pl-section {
    padding: 62px 16px;
  }
  .pl-section-head,
  .pl-section-head.pl-centered {
    display: block;
    text-align: center;
    margin-bottom: 28px;
  }
  .pl-section-head h2,
  .pl-story-copy h2,
  .pl-event h2,
  .pl-final-match h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    line-height: 1.12;
  }
  .pl-method-grid,
  .pl-guide-grid,
  .pl-transform-grid,
  .pl-footer-top,
  .pl-footer-links,
  .pl-final-match {
    grid-template-columns: 1fr;
  }
  .pl-method-grid,
  .pl-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .pl-method-card {
    min-height: 310px;
  }
  .pl-method-card span {
    margin: 10px 10px 0;
    padding: 6px 8px;
    font-size: 9px;
  }
  .pl-method-card strong,
  .pl-method-card p {
    max-width: calc(100% - 20px);
    white-space: normal;
    overflow-wrap: break-word;
  }
  .pl-method-card strong {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 21px;
  }
  .pl-method-card p {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
    line-height: 1.35;
  }
  .pl-story {
    grid-template-columns: 1fr;
  }
  .pl-story-image {
    min-height: 340px;
  }
  .pl-story-copy {
    padding: 48px 22px;
  }
  .pl-mini-grid {
    grid-template-columns: 1fr;
  }
  .pl-product-card img {
    aspect-ratio: 1 / .92;
  }
  .pl-event-actions,
  .pl-final-actions {
    flex-direction: column;
    gap: 0;
  }
  .pl-final-match {
    text-align: center;
  }
}
