/* ---------- Homepage-specific ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.9fr; gap: clamp(26px, 4vw, 52px); align-items: stretch; padding: clamp(28px, 3.6vw, 46px) 0; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 0; }
.hero-copy .eyebrow { color: var(--red-bright); }
.hero h1 { color: #fff; margin: 18px 0 0; }
.hero h1 em { font-style: italic; color: #f3d9a7; }
.hero-sub { font-size: 1.08rem; color: #c7cbd2; margin-top: 14px; max-width: 33em; }
.hero .cta-row { margin-top: 24px; }
.hero-media { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 300px; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.32)); }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.hero-trust .ht-item { display: flex; align-items: center; gap: 10px; }
.hero-trust .ht-item b { color: #fff; font-size: 1.45rem; font-family: var(--font-display); line-height: 1; }
.hero-trust .ht-item span:not(.stars) { font-size: 0.82rem; color: #aab0b9; display: block; }
.hero-trust .vr { width: 1px; height: 34px; background: rgba(255,255,255,0.16); }
.hero-price-flag {
  position: absolute; right: 16px; bottom: 16px; z-index: 3;
  background: rgba(255,255,255,0.96); color: var(--ink); backdrop-filter: blur(8px);
  border-radius: var(--r); padding: 12px 18px; box-shadow: var(--sh-lg); text-align: center;
}
.hero-price-flag span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.hero-price-flag b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); line-height: 1.1; }
.hero-price-flag small { font-size: 0.8rem; color: var(--muted); }

/* journey */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
.journey-step { padding: 34px 28px; border-right: 1px solid var(--line); position: relative; transition: background 0.2s; }
.journey-step:last-child { border-right: 0; }
.journey-step:hover { background: var(--paper); }
.journey-num { counter-increment: step; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 18px; }
.journey-num::before { content: counter(step); }
.journey-step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.journey-step p { font-size: 0.92rem; }
.journey-step .link-arrow { margin-top: 14px; font-size: 0.88rem; }
.journey-arrow { position: absolute; top: 50px; right: -11px; z-index: 2; width: 22px; height: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--red); }
.journey-arrow svg { width: 13px; height: 13px; }
@media (max-width: 880px) { .journey { grid-template-columns: 1fr 1fr; } .journey-step:nth-child(2n) { border-right: 0; } .journey-arrow { display: none; } }
@media (max-width: 520px) { .journey { grid-template-columns: 1fr; } .journey-step { border-right: 0; border-bottom: 1px solid var(--line); } }

/* styles showcase */
.style-card .card-media { aspect-ratio: 3 / 4; }
.style-meta { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.style-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }

/* materials */
.materials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.material-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; position: relative; }
.material-card.featured { border-color: var(--ink); box-shadow: var(--sh); }
.material-swatch { height: 88px; border-radius: var(--r); margin-bottom: 20px; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.material-swatch::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 13px); }
.material-card h3 { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.material-card .from { font-family: var(--font-display); font-size: 1.05rem; color: var(--red); white-space: nowrap; }
.material-card .from small { color: var(--muted); font-family: var(--font-sans); font-size: 0.72rem; }
.material-card ul.feat { margin: 18px 0 22px; display: grid; gap: 10px; }
.material-card ul.feat li { display: flex; gap: 9px; font-size: 0.92rem; align-items: flex-start; }
.material-card ul.feat svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.material-card .best-for { font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; padding: 10px 13px; background: var(--paper-2); border-radius: var(--r-sm); }
.material-card .best-for b { color: var(--charcoal); }
.material-card .m-cta { margin-top: auto; }

/* value / compare */
.value-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.value-list { display: grid; gap: 22px; margin-top: 28px; }
.value-item { display: flex; gap: 16px; }
.value-item .vi-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.value-item .vi-icon svg { width: 25px; height: 25px; }
.value-item h4 { color: var(--ink); margin-bottom: 4px; font-family: var(--font-display); font-size: 1.12rem; }
.value-item p { font-size: 0.94rem; }
.compare-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh); }
.compare-card h3 { text-align: center; margin-bottom: 6px; }
.compare-bars { margin-top: 26px; display: grid; gap: 20px; }
.compare-bar label { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 7px; font-weight: 600; color: var(--charcoal); }
.bar-track { height: 38px; background: var(--paper-2); border-radius: var(--r-sm); overflow: hidden; position: relative; }
.bar-fill { height: 100%; display: flex; align-items: center; padding-left: 14px; color: #fff; font-weight: 700; font-size: 0.9rem; border-radius: var(--r-sm); }
.bar-them { background: #b9c0c9; width: 100%; color: var(--ink); }
.bar-us { background: var(--red); width: 60%; }
.compare-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 20px; }

/* sample band */
.sample-band { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; position: relative; overflow: hidden; }
.sample-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(214,40,40,0.35), transparent 70%); }
.sample-band h2 { color: #fff; position: relative; }
.sample-band p { color: #c7cbd2; margin-top: 12px; max-width: 44ch; position: relative; }
.sample-band .swatch-stack { display: flex; margin-top: 22px; position: relative; }
.sample-band .swatch-stack i { width: 46px; height: 46px; border-radius: 10px; border: 2px solid var(--ink); margin-left: -10px; box-shadow: var(--sh); }
.sample-band .sb-cta { position: relative; text-align: right; }
@media (max-width: 760px) { .sample-band { grid-template-columns: 1fr; } .sample-band .sb-cta { text-align: left; } }

/* gallery teaser */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-grid a { border-radius: var(--r); overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; } .gallery-grid .wide { grid-column: span 2; } .gallery-grid .tall { grid-row: span 1; } }

/* reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.rating-badge { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 20px; box-shadow: var(--sh-sm); }
.rating-badge .score { font-family: var(--font-display); font-size: 2.2rem; color: var(--ink); line-height: 1; }
.rating-badge small { color: var(--muted); font-size: 0.82rem; }

/* faq */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-wrap .faq-item { border-bottom: 1px solid var(--line); }
.faq-wrap .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.faq-wrap .faq-q .faq-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: transform 0.25s, background 0.2s, border-color 0.2s, color 0.2s; }
.faq-wrap .faq-q .faq-ic svg { width: 16px; height: 16px; }
.faq-wrap .faq-item.open .faq-ic { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-wrap .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-wrap .faq-a-inner { padding: 0 4px 24px; color: var(--text); max-width: 70ch; }

/* final cta */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 16ch; margin: 14px auto 0; }

/* ---------- Homepage responsive ---------- */
@media (max-width: 900px) {
  .value-wrap { grid-template-columns: 1fr; }
  .materials { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; gap: 18px; padding: 20px 0 24px; }
  .hero-media { height: 200px; min-height: 0; order: -1; }
  .hero-price-flag { display: none; }
  .materials, .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { margin-bottom: 24px; }
}
