/* ══════════════════════════════════════════════════════════════════
   אופיר דודי שמש וחשמל — page sections ("שעת הזהב")
   Loads after styles.css on every page.
   ══════════════════════════════════════════════════════════════════ */

/* ── hero (home) ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(90px, 13vh, 150px);
  color: var(--on-ink); isolation: isolate;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: center 62%; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-dusk); }
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background: radial-gradient(58% 44% at 50% 12%, rgba(247,165,28,.28), transparent 70%);
}
.hero > .container { position: relative; z-index: 2; }

.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; margin-block: 14px 18px; max-width: 15ch; text-shadow: 0 4px 34px rgba(11,23,48,.55); }
.hero h1 em { color: var(--gold); }
.hero .lede { color: rgba(244,238,225,.88); max-width: 560px; text-shadow: 0 2px 18px rgba(11,23,48,.5); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-note { margin-top: 20px; font-size: .92rem; font-weight: 600; color: rgba(244,238,225,.75); }
.hero-note b { color: var(--gold); }

/* glass stats strip pinned to hero bottom */
.hero-stats {
  position: relative; z-index: 3;
  width: min(1180px, 92vw); margin: -78px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.09); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.hero-stat { padding: 26px 14px; text-align: center; position: relative; }
.hero-stat + .hero-stat::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 22%; height: 56%;
  width: 1px; background: rgba(255,255,255,.18);
}
.hero-stat .n {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff; display: block; line-height: 1.1;
}
.hero-stat .n.gold { color: var(--gold); }
.hero-stat .l { font-size: .86rem; font-weight: 600; color: rgba(244,238,225,.72); }
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: -58px; }
  .hero-stat { padding: 18px 10px; }
  .hero-stat:nth-child(3)::before { display: none; }
}

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 26px; inset-inline-start: 50%;
  transform: translateX(50%); z-index: 2; color: rgba(255,255,255,.65);
  animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob { 0%,100% { transform: translateX(50%) translateY(0); } 50% { transform: translateX(50%) translateY(9px); } }
@media (max-width: 760px) { .scroll-hint { display: none; } }

/* ── sub-page hero (shorter, photo band) ─────────────────────── */
.hero.hero-sub { min-height: 62svh; padding-bottom: clamp(60px, 9vh, 100px); }
.hero.hero-sub h1 { max-width: 20ch; }

/* ── amber ticker ─────────────────────────────────────────────── */
.ticker {
  background: var(--grad-sun); color: #fff; overflow: hidden;
  padding: 13px 0; white-space: nowrap; position: relative; z-index: 4;
}
.ticker-track { display: inline-flex; gap: 0; animation: ticker-rtl 30s linear infinite; }
.ticker span {
  display: inline-flex; align-items: center; gap: 10px;
  padding-inline: 26px; font-weight: 700; font-size: .95rem;
}
.ticker .sep { opacity: .55; }
@keyframes ticker-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ── journey of heat ──────────────────────────────────────────── */
.journey { background: var(--paper); position: relative; overflow: hidden; }
.journey::before {
  content: ""; position: absolute; inset-inline-end: -140px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,165,28,.16), transparent 65%);
}
.journey-grid, .grid-2 {
  counter-reset: step;
}
.journey-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.j-step {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 26px 22px 24px;
  position: relative; transition: transform .3s ease, box-shadow .3s ease;
}
.j-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.j-step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 16px; inset-inline-end: 18px;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--line-gold);
}
.j-ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(247,165,28,.13); margin-bottom: 16px;
}
.j-ico svg { width: 30px; height: 30px; stroke: var(--ember); }
.j-step h3 { margin-bottom: 8px; }
.j-step p { font-size: .95rem; color: var(--muted); }
@media (max-width: 920px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .journey-grid { grid-template-columns: 1fr; } }

/* ── services cards ───────────────────────────────────────────── */
.svc-section { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.svc-section::before {
  content: ""; position: absolute; inset-inline-start: 8%; bottom: -180px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,151,216,.14), transparent 65%);
}
.svc-section .section-head h2 { color: #fff; }
.svc-section .section-head .lede { color: var(--on-ink-dim); }
.svc-section .eyebrow { color: var(--gold); }
.svc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 28px 24px;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 3px;
  background: var(--grad-sun); transform: scaleX(0); transform-origin: right;
  transition: transform .4s ease;
}
.svc-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(247,165,28,.4); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card h3 { color: #fff; margin-block: 14px 8px; }
.svc-card p { font-size: .95rem; color: var(--on-ink-dim); }
.svc-ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-sun); box-shadow: var(--shadow-amber);
}
.svc-ico.cool { background: linear-gradient(120deg, var(--sky) 0%, var(--sky-deep) 100%); box-shadow: 0 10px 26px rgba(74,151,216,.35); }
.svc-ico svg { width: 28px; height: 28px; stroke: #fff; }
.svc-more { margin-top: 40px; text-align: center; }

/* ── split payoff (shower) ────────────────────────────────────── */
.payoff-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.payoff-img {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
  position: relative; aspect-ratio: 4 / 5;
}
.payoff-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.payoff-img:hover img { transform: scale(1.045); }
.payoff-badge {
  position: absolute; bottom: 18px; inset-inline-start: 18px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 10px 18px;
  font-weight: 700; color: var(--ink); font-size: .9rem;
  box-shadow: var(--shadow-sm);
}
.payoff-badge b { color: var(--ember); }
.payoff-list { margin-top: 22px; display: grid; gap: 13px; }
.payoff-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.payoff-list svg { width: 22px; height: 22px; flex: none; margin-top: 3px; stroke: var(--ember); }
@media (max-width: 860px) { .payoff-grid { grid-template-columns: 1fr; } .payoff-img { aspect-ratio: 16/11; } }

/* ── gallery ──────────────────────────────────────────────────── */
.gallery { background: var(--paper-2); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 14px;
}
.g-item {
  position: relative; border-radius: var(--r-md); overflow: hidden; cursor: default;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item.tall { grid-row: span 2; }
.g-cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: 34px 16px 13px;
  background: linear-gradient(180deg, transparent, rgba(11,23,48,.78));
  color: #fff; font-size: .88rem; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease;
}
.g-item:hover .g-cap { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .g-cap { opacity: 1; transform: none; }
}

/* ── testimonials ─────────────────────────────────────────────── */
.reviews { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.reviews::before {
  content: ""; position: absolute; inset-inline-end: -120px; top: -120px;
  width: 430px; height: 430px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,165,28,.13), transparent 65%);
}
.reviews .section-head h2 { color: #fff; }
.reviews .section-head .lede { color: var(--on-ink-dim); }
.rating-hero {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 10px 24px; margin-bottom: 34px;
}
.rating-hero .score { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.rating-hero .stars { color: var(--gold); letter-spacing: 2px; }
.rating-hero .of { font-size: .88rem; color: var(--on-ink-dim); font-weight: 600; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 30px 26px; position: relative;
  display: flex; flex-direction: column;
}
.testimonial::before {
  content: "”"; position: absolute; top: 2px; inset-inline-end: 20px;
  font-family: Georgia, 'Times New Roman', serif; font-size: 5rem; line-height: 1;
  color: rgba(247,165,28,.3);
}
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial .quote { color: var(--on-ink); line-height: 1.75; flex: 1; }
.testimonial .who { margin-top: 18px; font-weight: 700; color: #fff; }
.testimonial .meta { font-size: .84rem; color: var(--on-ink-dim); }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ── pricing ──────────────────────────────────────────────────── */
.price-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 24px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card .p {
  font-family: var(--font-display); font-size: 2rem; color: var(--ember);
  display: block; margin-block: 8px 4px;
}
.price-card .note { font-size: .85rem; color: var(--muted); }
@media (max-width: 760px) { .price-teaser-grid { grid-template-columns: 1fr; } }

.price-table {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 42px;
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th {
  background: var(--ink); color: var(--gold); text-align: start;
  padding: 14px 22px; font-size: .92rem; letter-spacing: .04em;
}
.price-table td { padding: 15px 22px; border-top: 1px solid var(--line); }
.price-table tr:nth-child(even) td { background: rgba(247,165,28,.045); }
.price-table .price { font-weight: 800; color: var(--ember); white-space: nowrap; text-align: end; }
.price-note {
  background: rgba(74,151,216,.1); border-inline-start: 4px solid var(--sky);
  border-radius: var(--r-sm); padding: 20px 24px; margin-top: 8px;
}
.price-note h3 { color: var(--sky-deep); margin-bottom: 6px; font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; }

/* ── areas ────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 20px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  transition: transform .2s ease, border-color .2s ease;
}
.chip:hover { transform: translateY(-2px); border-color: var(--sun); }
.chip.hot { background: var(--grad-sun); color: #fff; border: 0; box-shadow: var(--shadow-amber); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 14px; padding: 20px 24px; font-weight: 700; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--ember);
  transition: transform .3s ease; flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 24px 22px; color: var(--muted); }

/* ── big CTA band ─────────────────────────────────────────────── */
.big-cta {
  position: relative; color: #fff; text-align: center; isolation: isolate;
  padding: clamp(80px, 11vw, 130px) 0; overflow: hidden;
}
.big-cta .bg, .big-cta .bg img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.big-cta .bg img { object-fit: cover; }
.big-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(11,23,48,.9) 8%, rgba(11,23,48,.55) 55%, rgba(226,87,27,.45) 100%);
}
.big-cta h2 { color: #fff; margin-bottom: 14px; }
.big-cta p { color: rgba(244,238,225,.85); max-width: 520px; margin: 0 auto 30px; font-size: 1.1rem; }
.big-cta .hero-ctas { justify-content: center; }

/* ── contact page ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact-methods { display: grid; gap: 13px; }
.contact-method {
  display: flex; align-items: center; gap: 15px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 17px 20px; transition: transform .22s ease, border-color .22s ease;
}
a.contact-method:hover { transform: translateY(-3px); border-color: var(--sun); }
.cm-ico {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center; background: rgba(247,165,28,.13);
}
.cm-ico svg { width: 24px; height: 24px; stroke: var(--ember); }
.contact-method .lbl { font-weight: 700; color: var(--ink); }
.contact-method .sub { font-size: .9rem; color: var(--muted); }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

/* ── about page ───────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about-figure { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.spec-list { display: grid; gap: 0; }
.spec-list li {
  display: flex; gap: 12px; align-items: center; padding: 13px 4px;
  border-bottom: 1px solid var(--line); font-weight: 500;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list svg { width: 21px; height: 21px; flex: none; stroke: var(--ember); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ── legal pages ──────────────────────────────────────────────── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: calc(var(--nav-h) + 50px) 24px 80px; line-height: 1.85; }
.legal-wrap h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal-wrap h2 { font-size: 1.25rem; margin: 34px 0 12px; color: var(--ember); }
.legal-wrap .meta { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.legal-wrap ul { padding-inline-start: 22px; margin: 8px 0 16px; list-style: disc; }
.legal-wrap a { color: var(--ember); text-decoration: underline; }
.legal-box {
  background: rgba(247,165,28,.12); border-inline-start: 4px solid var(--ember);
  padding: 18px 22px; margin: 24px 0; border-radius: var(--r-sm);
}

/* ── thank-you ────────────────────────────────────────────────── */
.ty-hero { min-height: 82svh; display: flex; align-items: center; text-align: center; }
.ty-check {
  width: 92px; height: 92px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--grad-sun); display: grid; place-items: center;
  box-shadow: var(--shadow-amber); animation: ty-pop .6s cubic-bezier(.2,1.6,.4,1) both;
}
.ty-check svg { width: 46px; height: 46px; stroke: #fff; }
@keyframes ty-pop { from { transform: scale(.4); opacity: 0; } }

/* ══════════════════ HERO C — Awwwards bento (home) ══════════════════ */
.hero-c { min-height: auto; display: block; padding: calc(var(--nav-h) + 30px) 0 14px;
  background:
    radial-gradient(42% 36% at 88% 4%, rgba(247,165,28,.16), transparent 70%),
    radial-gradient(34% 30% at 4% 90%, rgba(74,151,216,.09), transparent 70%),
    var(--paper); }
.hc-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 224px; gap: 14px;
  position: relative; perspective: 1100px; }
.hc-grid::after { content: ""; position: absolute; inset: -10px; pointer-events: none; z-index: 5;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 20%), rgba(255,255,255,.22), transparent 62%);
  opacity: 0; transition: opacity .45s ease; mix-blend-mode: soft-light; }
.hc-grid.lit::after { opacity: 1; }
.hc-cell { border-radius: var(--r-lg); overflow: hidden; position: relative;
  opacity: 0; transform: translateY(34px) scale(.96); filter: blur(10px);
  transition: opacity .8s ease, transform .95s cubic-bezier(.2,.75,.25,1), filter .8s ease;
  will-change: transform; }
.hero-in .hc-cell { opacity: 1; transform: none; filter: none; }
.hc-cell:nth-child(2) { transition-delay: .1s; } .hc-cell:nth-child(3) { transition-delay: .18s; }
.hc-cell:nth-child(4) { transition-delay: .26s; } .hc-cell:nth-child(5) { transition-delay: .34s; }
.hc-cell:nth-child(6) { transition-delay: .42s; }

/* main amber cell */
.hc-main { grid-column: 1 / 3; grid-row: 1 / 3;
  background: linear-gradient(135deg, #F7A51C 0%, #E2571B 82%);
  color: #fff; padding: clamp(24px, 3vw, 46px); display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-amber); }
.hc-main::before { content: ""; position: absolute; inset: -35%;
  background: radial-gradient(42% 36% at 30% 24%, rgba(255,238,190,.65), transparent 68%);
  mix-blend-mode: soft-light; animation: hc-drift 10s ease-in-out infinite alternate; }
.hc-main::after { content: ""; position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E"); }
@keyframes hc-drift { to { transform: translate(16%, 12%) scale(1.18); } }
.hc-main > * { position: relative; z-index: 1; }
.hc-eyebrow { font-weight: 700; font-size: .85rem; letter-spacing: .05em; opacity: .92; margin-bottom: 10px; }
.hc-main h1 { color: #fff; font-size: clamp(2.3rem, 4.5vw, 3.8rem); line-height: 1.07;
  text-shadow: none; max-width: none; }
.hc-main h1 .ln { display: block; overflow: hidden; padding-block: .04em; }
.hc-main h1 .ln > span { display: inline-block; transform: translateY(118%); transition: transform .9s cubic-bezier(.2,.75,.2,1) .15s; }
.hc-main h1 .lnem > span { color: var(--ink); transition-delay: .28s; }
.hero-in .hc-main h1 .ln > span { transform: none; }
.hc-main p { margin: 14px 0 24px; max-width: 470px; color: rgba(255,255,255,.93); font-weight: 500; }
.hc-note { font-size: .85rem !important; font-weight: 700 !important; color: rgba(255,255,255,.85) !important; margin: 18px 0 0 !important; max-width: none !important; }
.hc-main .btn-ink:hover { background: #0E1C3A; }
.hc-main .btn { position: relative; transition: transform .18s ease, box-shadow .22s ease; }

/* photo cell — ken burns + caption entrance */
.hc-photo, .hc-steam { margin: 0; }
.hc-photo { grid-column: 3 / 5; grid-row: 1 / 2; }
.hc-photo img, .hc-steam img { width: 100%; height: 100%; object-fit: cover; }
.hc-photo img { animation: hc-kb 16s ease-in-out infinite alternate; }
@keyframes hc-kb { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.1) translate(-2%, 2.5%); } }
.hc-photo figcaption, .hc-steam figcaption { position: absolute; bottom: 12px; inset-inline-start: 12px; z-index: 2;
  background: rgba(11,23,48,.72); backdrop-filter: blur(6px); color: #fff; font-size: .82rem; font-weight: 600;
  padding: 6px 13px; border-radius: 100px; opacity: 0; transform: translateY(8px);
  transition: opacity .6s ease 1s, transform .6s ease 1s; }
.hero-in .hc-photo figcaption, .hero-in .hc-steam figcaption { opacity: 1; transform: none; }

/* rating cell */
.hc-rate { grid-column: 3 / 4; grid-row: 2 / 3; background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; text-align: center;
  padding: 14px; transition-property: opacity, transform, filter, box-shadow, border-color; }
.hc-rate:hover { border-color: var(--line-gold); box-shadow: var(--shadow-md); }
.hc-rate b { font-size: 2.6rem; color: var(--ember); font-weight: 400; line-height: 1.05; }
.hc-stars { position: relative; color: rgba(226,87,27,.2); letter-spacing: 3px; font-size: 1.05rem; }
.hc-stars::before { content: "★★★★★"; position: absolute; inset-inline-start: 0; top: 0;
  color: var(--sun); letter-spacing: 3px; overflow: hidden; white-space: nowrap; width: 0; }
.hero-in .hc-stars::before { animation: hc-starfill 1.3s cubic-bezier(.3,.6,.3,1) 1s both; }
@keyframes hc-starfill { from { width: 0; } to { width: 96%; } }
.hc-sub { font-size: .82rem; font-weight: 600; color: var(--muted); }

/* fast cell — live clock + sweeping ring */
.hc-fast { grid-column: 4 / 5; grid-row: 2 / 3; background: var(--ink); color: var(--on-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 14px; }
.hc-clock { position: relative; width: 44px; height: 44px; display: grid; place-items: center; color: var(--gold); }
.hc-clock svg { width: 38px; height: 38px; }
.hc-clock::after { content: ""; position: absolute; inset: -7px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 78%, var(--gold) 92%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #000 calc(100% - 3px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #000 calc(100% - 3px));
  animation: hc-sweep 3.2s linear infinite; }
@keyframes hc-sweep { to { rotate: 360deg; } }
.hc-mh { transform-origin: 12px 12px; animation: hc-sweep 5s linear infinite; }
.hc-hh { transform-origin: 12px 12px; animation: hc-sweep 60s linear infinite; }
.hc-fast b { font-size: 1.05rem; } .hc-fast .hc-sub { color: var(--on-ink-dim); }

/* vet cell — orbit ring */
.hc-vet { grid-column: 1 / 2; grid-row: 3 / 4; background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 14px; }
.hc-orbit { position: relative; display: grid; place-items: center; width: 86px; height: 86px; }
.hc-orbit::after { content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(226,87,27,.4); animation: hc-sweep 34s linear infinite; }
.hc-vet b { font-size: 2.6rem; color: var(--ink); font-weight: 400; line-height: 1; }

/* steam cell — rising vapor */
.hc-steam { grid-column: 2 / 5; grid-row: 3 / 4; }
.hc-steam::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .55;
  background:
    radial-gradient(70px 110px at 26% 105%, rgba(255,255,255,.55), transparent 70%),
    radial-gradient(56px 90px at 55% 110%, rgba(255,255,255,.45), transparent 70%),
    radial-gradient(64px 100px at 80% 105%, rgba(255,255,255,.5), transparent 70%);
  filter: blur(13px); animation: hc-steamrise 5.5s ease-in-out infinite; }
@keyframes hc-steamrise {
  0% { transform: translateY(6%); opacity: .15; }
  45% { opacity: .55; }
  100% { transform: translateY(-46%); opacity: 0; } }

/* scroll cue */
.hc-cue { display: flex; justify-content: center; padding: 16px 0 4px; color: var(--muted);
  animation: hint-bob 2.4s ease-in-out infinite; }

/* mobile — tight composition: orange card is a poster, photo peeks on first screen */
@media (max-width: 860px) {
  .hero-c { padding: calc(var(--nav-h) + 14px) 0 8px; }
  .hc-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; gap: 10px; perspective: none; }
  .hc-cell { border-radius: 20px; }
  .hc-main { grid-column: 1 / 3; grid-row: auto; min-height: 0; padding: 26px 20px 22px; justify-content: flex-start; }
  .hc-eyebrow { font-size: .78rem; margin-bottom: 8px; }
  .hc-main h1 { font-size: clamp(2.15rem, 9vw, 2.7rem); }
  .hc-main p { font-size: .95rem; margin: 10px 0 18px; }
  .hc-main .hero-ctas { margin-top: 0; gap: 10px; flex-wrap: nowrap; }
  .hc-main .btn { flex: 1; min-width: 0; padding: 13px 10px; font-size: .95rem; }
  .hc-main .btn svg { width: 17px; height: 17px; }
  .hc-note { font-size: .78rem !important; margin-top: 14px !important; text-align: center; }
  .hc-photo { grid-column: 1 / 3; grid-row: auto; height: 190px; }
  .hc-rate { grid-column: 1 / 2; grid-row: auto; min-height: 148px; padding: 12px 8px; }
  .hc-rate b { font-size: 2.1rem; }
  .hc-stars { font-size: .92rem; }
  .hc-fast { grid-column: 2 / 3; grid-row: auto; min-height: 148px; padding: 12px 8px; gap: 6px; }
  .hc-fast b { font-size: .95rem; }
  .hc-clock { width: 38px; height: 38px; }
  .hc-clock svg { width: 32px; height: 32px; }
  .hc-vet { grid-column: 1 / 2; grid-row: auto; min-height: 142px; padding: 12px 8px; gap: 2px; }
  .hc-orbit { width: 66px; height: 66px; }
  .hc-vet b { font-size: 2.1rem; }
  .hc-steam { grid-column: 2 / 3; grid-row: auto; height: auto; min-height: 142px; }
  .hc-sub { font-size: .74rem; }
  .hc-photo figcaption, .hc-steam figcaption { font-size: .74rem; padding: 5px 11px; bottom: 9px; inset-inline-start: 9px; }
  .hc-grid::after { display: none; }
  .hc-cue { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hc-cell, .hc-main h1 .ln > span { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .hc-main::before, .hc-photo img, .hc-clock::after, .hc-mh, .hc-hh, .hc-orbit::after, .hc-steam::after, .hc-cue { animation: none !important; }
  .hero-in .hc-stars::before { animation: none; width: 96%; }
  .hc-grid::after { display: none; }
}
