/* ==========================================================================
   petsky — page styles (home + shared sections)
   ========================================================================== */
.page { display: block; }

/* shared section heading */
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; margin-bottom: 44px; }
.sec-title { font-size: clamp(28px, 4vw, 44px); line-height: 1.04; max-width: 16ch; }
.sec-sub { color: var(--muted); font-size: 17px; max-width: 46ch; justify-self: end; }
.sec-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 40px; }
.sec-foot__note { color: var(--muted); font-size: 14.5px; }
.linkish { color: var(--primary-deep); font-weight: 700; font-family: var(--font-display); font-size: inherit; padding: 0; }
.linkish:hover { text-decoration: underline; }

.ticks { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink-2); }
.tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; margin-top: 1px; }
.tick svg { width: 14px; height: 14px; }

/* ---------------- hero ---------------- */
.hero { padding-top: calc(var(--nav-h) + clamp(28px, 5vw, 64px)); padding-bottom: clamp(40px, 6vw, 80px); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 78%;
  background: radial-gradient(120% 120% at 80% 0%, var(--primary-soft) 0%, rgba(228,244,237,0) 58%);
  z-index: -1;
}
.hero__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { font-size: clamp(36px, 5.6vw, 64px); line-height: 1.02; margin-top: 18px; max-width: 14ch; }
.hero__lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); margin-top: 22px; max-width: 50ch; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.hero__meta { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { width: 15px; height: 15px; color: var(--primary); }
.hero__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 4.4; box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero__frame .cover { transition: transform 6s ease; }
.hero__frame:hover .cover { transform: scale(1.05); }
.hero__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,36,31,.72); color: #fff; backdrop-filter: blur(6px);
  font-size: 12.5px; font-weight: 700; font-family: var(--font-display);
  padding: 8px 13px; border-radius: var(--r-pill);
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #46d39a; box-shadow: 0 0 0 4px rgba(70,211,154,.3); }
.hero__rating {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.hero__rating-num { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--primary-deep); line-height: 1; }
.hero__rating-meta { display: flex; flex-direction: column; gap: 3px; font-size: 12px; color: var(--muted); }
.hero__stars { display: inline-flex; gap: 1px; }
.hero__stars svg { width: 13px; height: 13px; }
.hero__cap { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--muted); font-size: 13px; font-family: var(--font-mono); }
.hero__cap svg { width: 14px; height: 14px; }

/* ---------------- value props ---------------- */
.vprops { padding-bottom: clamp(24px, 4vw, 48px); }
.vprops__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.vprop {
  display: flex; gap: 14px; align-items: flex-start; padding: 22px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.vprop__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; }
.vprop__ic svg { width: 22px; height: 22px; }
.vprop__t { font-size: 16px; font-weight: 800; }
.vprop__d { font-size: 13.5px; color: var(--muted); margin-top: 4px; line-height: 1.45; }

/* ---------------- services preview ---------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe5d9; }
.svc__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--secondary-soft); color: var(--secondary); display: grid; place-items: center; margin-bottom: 18px; }
.svc__ic svg { width: 26px; height: 26px; }
.svc__k { font-size: 21px; font-weight: 800; }
.svc__d { color: var(--muted); font-size: 15px; margin-top: 10px; line-height: 1.55; }
.svc__tag { display: inline-flex; margin-top: 18px; font-size: 12px; font-weight: 700; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--primary-deep); background: var(--primary-soft); padding: 6px 11px; border-radius: var(--r-pill); }

/* ---------------- brands ---------------- */
.brands { padding-block: clamp(40px, 5vw, 64px); border-block: 1px solid var(--border); background: var(--surface); }
.brands__lead { font-size: 14px; color: var(--ink-2); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.brands__row { display: flex; flex-wrap: wrap; gap: 10px; }
.brands__chip {
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  color: var(--ink-2); padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--bg); border: 1px solid var(--border);
}
.brands__note { margin-top: 18px; color: var(--muted); font-size: 13.5px; }

/* ---------------- inside ---------------- */
.inside__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.inside__media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5/4.4; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.inside__media .cover { transition: transform 6s ease; }
.inside__media:hover .cover { transform: scale(1.04); }
.inside__p { color: var(--ink-2); font-size: 16.5px; margin-top: 18px; line-height: 1.6; max-width: 46ch; }

/* ---------------- quote band ---------------- */
.quote { background: var(--secondary-deep); color: #fff; padding-block: clamp(56px, 8vw, 100px); }
.quote__in { max-width: 860px; margin: 0 auto; text-align: center; }
.quote__mark { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 22px; }
.quote__text { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.25; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.quote__by { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 28px; }
.quote__src { font-size: 13px; color: rgba(255,255,255,.55); font-family: var(--font-mono); }

/* ---------------- visit band ---------------- */
.visit__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.visit__rows { display: grid; gap: 18px; margin: 26px 0; }
.visit__row { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.visit__ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; }
.visit__ic svg { width: 19px; height: 19px; }
.visit__phone { font-family: var(--font-mono); font-weight: 700; color: var(--primary-deep); font-size: 17px; }
.visit__muted { color: var(--muted); font-size: 13.5px; }
.visit__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.visit__map { position: relative; }
.visit__ph { aspect-ratio: 7/5; border-radius: var(--r-xl); }
.visit__maplink { position: absolute; bottom: 14px; right: 14px; background: #fff; box-shadow: var(--shadow-md); font-size: 13px; font-weight: 700; color: var(--secondary); padding: 9px 14px; border-radius: var(--r-pill); }
.visit__maplink:hover { color: var(--primary-deep); }

/* ---------------- final cta ---------------- */
.cta { padding-block: clamp(20px, 4vw, 40px) clamp(56px, 8vw, 96px); }
.cta__in {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--r-xl); padding: clamp(32px, 5vw, 60px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta__in::after { content:""; position:absolute; right:-60px; top:-60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta__title { color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.cta__sub { color: rgba(255,255,255,.85); font-size: 16.5px; margin-top: 12px; max-width: 44ch; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ---------------- responsive ---------------- */
@media (max-width: 960px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
  .hero__frame { aspect-ratio: 5/4; }
  .vprops__grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-sub { justify-self: start; }
  .inside__in, .visit__in { grid-template-columns: 1fr; }
  .inside__media { order: -1; aspect-ratio: 5/4; }
  .cta__in { grid-template-columns: 1fr; }
  .cta__btns { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .vprops__grid { grid-template-columns: 1fr; }
  .hero__rating-num { font-size: 24px; }
  .brands__chip { font-size: 14px; padding: 8px 13px; }
}
