/* ============================================================
   BRIGHT & TIDY — INNER PAGE STYLES
   Services · Pricing · Contact · Legal · Blog
   Built on the homepage design tokens (Fraunces/Inter, turquoise
   palette, soft shadows, rounded corners). Loaded after the brand
   sheet so --brand values win.
   ============================================================ */

/* ---- Safeguard: the homepage-only loader must never cover an
   inner page if its JS doesn't run here. (Loader hides via .is-done
   on the front page; force-hide everywhere else.) ---- */
body:not(.home) #loader,
body:not(.home) .loader { display: none !important; }

/* ---- Shared rhythm ---- */
.page-section { padding: clamp(48px, 7vw, 110px) 0; }
.page-section--tight { padding: clamp(36px, 4vw, 64px) 0; }
.page-lede { color: var(--muted); font-size: clamp(16px, 1.2vw, 19px); max-width: 62ch; }

/* ============================================================
   PAGE HERO  (shared by all inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(140px, 17vw, 210px) 0 clamp(28px, 4vw, 56px);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  color: var(--ink);
}
.page-hero__title em { font-style: italic; font-weight: 400; color: var(--brand-2); }
.page-hero__sub {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
  max-width: 60ch;
}
.page-hero__crumbs {
  margin-top: 26px; font-size: 13px; letter-spacing: .04em;
  color: var(--muted);
}
.page-hero__crumbs a { color: var(--brand-2); }
.page-hero__crumbs span { opacity: .5; margin: 0 .5em; }

/* ============================================================
   GENERIC PROSE  (legal pages, single post body)
   ============================================================ */
.page-prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}
.page-prose > *:first-child { margin-top: 0; }
.page-prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 2.2em 0 .6em;
}
.page-prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 23px);
  color: var(--ink);
  margin: 1.8em 0 .5em;
}
.page-prose p { margin: 0 0 1.15em; }
.page-prose ul, .page-prose ol { margin: 0 0 1.3em; padding-left: 1.2em; }
.page-prose li { margin: 0 0 .5em; padding-left: .2em; }
.page-prose li::marker { color: var(--brand-2); }
.page-prose a { color: var(--brand-2); border-bottom: 1px solid rgba(43,163,158,.35); }
.page-prose a:hover { border-bottom-color: var(--brand-2); }
.page-prose strong { color: var(--ink); font-weight: 600; }
.page-prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }
.page-prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px;
  border-left: 3px solid var(--brand);
  color: var(--muted); font-style: italic;
}
.page-prose__updated { color: var(--muted); font-size: 14px; margin-bottom: 2.4em; }

/* ============================================================
   REUSABLE CTA BAND
   ============================================================ */
.page-cta { padding: clamp(40px, 5vw, 80px) 0; }
.page-cta__card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #14323F 0%, #0B1733 70%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.page-cta__card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(540px circle at 80% -10%, rgba(91,199,195,.4), transparent 60%);
  pointer-events: none;
}
.page-cta__card > * { position: relative; }
.page-cta h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px); line-height: 1.08;
  letter-spacing: -0.02em; margin: 10px 0 0;
}
.page-cta h2 em { font-style: italic; color: var(--brand); }
.page-cta p { color: rgba(255,255,255,.78); max-width: 54ch; margin: 16px auto 0; }
.page-cta .eyebrow { justify-content: center; color: rgba(255,255,255,.7); }
.page-cta .eyebrow::before { background: rgba(255,255,255,.5); }
.page-cta__actions {
  margin-top: 30px; display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center; align-items: center;
}
.page-cta .btn--primary { background: #fff; color: var(--ink); }
.page-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.page-cta__bullets {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 14px;
}
.page-cta__bullets li::before { content: '✓'; color: var(--brand); margin-right: .5em; font-weight: 700; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
  --cols: 3;
}
.svc-grid > .svc-card {
  flex: 0 1 calc((100% - (var(--cols) - 1) * clamp(18px, 2vw, 28px)) / var(--cols));
  max-width: calc((100% - (var(--cols) - 1) * clamp(18px, 2vw, 28px)) / var(--cols));
}
@media (max-width: 1040px) { .svc-grid { --cols: 2 !important; } }
@media (max-width: 600px)  { .svc-grid { --cols: 1 !important; } }
.svc-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__price {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 8px 14px; border-radius: 99px; box-shadow: var(--shadow);
}
.svc-card__price small { color: var(--muted); font-weight: 500; }
.svc-card__body { padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; margin: 0 0 8px; color: var(--ink);
}
.svc-card__body p { color: var(--muted); margin: 0 0 14px; font-size: 15.5px; }
.svc-card__body ul { list-style: none; margin: 0 0 18px; padding: 0; }
.svc-card__body li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: 15px; }
.svc-card__body li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--brand-2);
}
.svc-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
}
.svc-card__link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .3s var(--ease); }
.svc-card__link:hover { color: var(--brand-2); }
.svc-card__link:hover svg { transform: translateX(4px); }
.svc-note { margin: 36px auto 0; text-align: center; color: var(--muted); font-size: 14.5px; max-width: 70ch; }

/* areas chips */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.area-chips a, .area-chips span {
  border: 1px solid var(--line); background: var(--bg-soft);
  padding: 9px 16px; border-radius: 99px; font-size: 14px; color: var(--ink-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.area-chips a:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-2px); }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.price-grid {
  display: grid; gap: clamp(18px, 2vw, 26px);
  grid-template-columns: repeat(2, 1fr);
}
.price-block {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 34px);
  box-shadow: var(--shadow);
}
.price-block__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.price-block__head h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 23px;
  color: var(--ink); margin: 0;
}
.price-block__from { color: var(--brand-2); font-weight: 600; font-size: 14px; white-space: nowrap; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: none; }
.price-list__name { color: var(--ink-2); }
.price-list__name small { display: block; color: var(--muted); font-size: 13px; }
.price-list__price { font-weight: 600; color: var(--ink); white-space: nowrap; }
.promo {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-3), var(--brand-4));
  border: 1px solid rgba(91,199,195,.4);
  border-radius: var(--r-md); padding: 20px 28px; margin-bottom: 40px;
}
.promo strong { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); }
.promo span { color: var(--ink-2); }
.price-note { margin: 34px auto 0; text-align: center; color: var(--muted); font-size: 14.5px; max-width: 72ch; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(3, 1fr);
}
.contact-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 32px);
  box-shadow: var(--shadow); text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-card__ico {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #7DDAD6 0%, #2BA39E 100%);
  color: #fff;
}
.contact-card__ico svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 0 0 6px; color: var(--ink); }
.contact-card p { color: var(--muted); font-size: 15px; margin: 0 0 12px; }
.contact-card a.contact-card__value { display: block; font-weight: 600; font-size: 17px; color: var(--ink); }
.contact-card a.contact-card__value:hover { color: var(--brand-2); }
.contact-card__sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.contact-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}
.contact-split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 340px; max-height: 560px; }
/* Absolutely-positioned cover image: it fills the copy-driven row height instead
   of dictating it, so a tall (portrait) photo can never blow the section up. */
.contact-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-areas { margin-top: 14px; }

/* social row */
.social-row { display: flex; gap: 12px; justify-content: center; margin-top: 4px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--ink); transition: all .3s var(--ease);
}
.social-row a:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-3px); }
.social-row svg { width: 20px; height: 20px; }

/* ============================================================
   BLOG  — index, cards, single, archives
   ============================================================ */
.post-grid {
  display: grid; gap: clamp(20px, 2.4vw, 32px);
  grid-template-columns: repeat(3, 1fr);
}
.post-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: block; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__cat {
  position: absolute; left: 14px; top: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--brand-2); font-weight: 600; font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 99px;
}
.post-card__body { padding: clamp(20px, 2vw, 26px); display: flex; flex-direction: column; flex: 1; }
.post-card__title {
  font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.25;
  margin: 0 0 10px; color: var(--ink);
}
.post-card__title a:hover { color: var(--brand-2); }
.post-card__excerpt { color: var(--muted); font-size: 15px; margin: 0 0 16px; }
.post-card__meta {
  margin-top: auto; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px;
}
.post-card__meta time { font-weight: 500; }

/* featured (first) post on the blog index */
.post-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px, 3vw, 48px);
  align-items: center; margin-bottom: clamp(28px, 4vw, 56px);
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
}
.post-feature__media { aspect-ratio: 4 / 3; overflow: hidden; }
.post-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.post-feature__body { padding: clamp(24px, 3vw, 48px); }
.post-feature__body h2 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.1; letter-spacing: -.01em; margin: 12px 0 14px; color: var(--ink);
}
.post-feature__body h2 a:hover { color: var(--brand-2); }
.post-feature__body p { color: var(--muted); margin: 0 0 22px; }

/* pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: clamp(40px, 5vw, 72px); flex-wrap: wrap; }
.pagination .page-numbers {
  min-width: 44px; height: 44px; padding: 0 14px; display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px; color: var(--ink-2); font-weight: 600;
  background: var(--bg-soft); transition: all .3s var(--ease);
}
.pagination .page-numbers:hover { border-color: var(--brand); color: var(--brand-2); }
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* single post */
.post-hero { padding: clamp(130px, 16vw, 200px) 0 clamp(20px, 3vw, 40px); text-align: center; }
.post-hero__cat {
  display: inline-block; color: var(--brand-2); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.post-hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -.02em;
  max-width: 18ch; margin: 0 auto; color: var(--ink);
}
.post-hero__meta { margin-top: 22px; color: var(--muted); font-size: 14px; display: flex; gap: 10px; justify-content: center; align-items: center; }
.post-hero__meta span { opacity: .5; }
.post-cover {
  width: min(1100px, 94vw); margin: 0 auto clamp(36px, 5vw, 64px);
  aspect-ratio: 21 / 9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-foot {
  max-width: 820px; margin: clamp(32px, 4vw, 56px) auto 0; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.post-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.post-back:hover { color: var(--brand-2); }
.post-share { display: flex; gap: 10px; align-items: center; }
.post-share span { font-size: 13px; color: var(--muted); }

/* archive header */
.archive-head { text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .svc-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; }
  .contact-split, .post-feature { grid-template-columns: 1fr; }
  .post-feature__media { aspect-ratio: 16 / 9; }
  .contact-split__media { order: -1; aspect-ratio: 16 / 10; min-height: 0; }
}
@media (max-width: 680px) {
  .svc-grid, .post-grid, .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOK PAGE
   ============================================================ */
.book-quick { margin-bottom: clamp(24px, 3vw, 44px); }
.book-embed {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff;
  max-width: 480px; margin-inline: auto;   /* narrow parent → widget uses its centered single-column layout */
}
.book-embed #cleanCloudWebApp { display: block; width: 100%; min-height: 700px; }
.book-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 16px; }
.book-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.book-badge {
  display: inline-flex; align-items: center; gap: 10px; text-align: left;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.book-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.book-badge svg { width: 22px; height: 22px; flex: none; }
.book-badge small { display: block; font-size: 10px; opacity: .82; letter-spacing: .02em; }
.book-badge strong { display: block; font-size: 14px; font-weight: 600; }

/* ============================================================
   SERVICE DETAIL PAGES (Laundry Service, etc.)
   ============================================================ */
.svc-why { align-items: center; }
.bt-checks { list-style: none; margin: 18px 0 0; padding: 0; }
.bt-checks li { position: relative; padding-left: 36px; margin-bottom: 14px; color: var(--ink-2); font-size: 16px; line-height: 1.5; }
.bt-checks li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #7DDAD6, #2BA39E); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.feature-cards { display: grid; gap: clamp(16px,2vw,24px); grid-template-columns: repeat(3,1fr); }
.feature-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(20px,2.2vw,30px); box-shadow: var(--shadow); border-top: 3px solid var(--brand);
}
.feature-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 0 0 8px; color: var(--ink); }
.feature-card p { color: var(--muted); margin: 0; font-size: 15.5px; line-height: 1.6; }
.svc-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg-soft); margin-bottom: 12px; padding: 2px 22px; box-shadow: var(--shadow); }
.faq-item summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--brand-2); font-size: 24px; font-weight: 300; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__a { color: var(--muted); padding: 0 0 20px; line-height: 1.7; }
.faq-item__a ol { margin: 6px 0 0; padding-left: 22px; }
.faq-item__a li { margin-bottom: 6px; }
.reviews-summary { text-align: center; }
.reviews-summary__score { font-family: var(--font-display); font-weight: 600; font-size: clamp(44px,6vw,72px); color: var(--ink); line-height: 1; }
.reviews-summary__stars { color: #F5B301; font-size: 26px; letter-spacing: 3px; margin: 12px 0 6px; }
.reviews-summary__meta { color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .feature-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-cards { grid-template-columns: 1fr; } }

/* App-download CTA band (reusable app-cta partial) */
.page-cta__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px,3.4vw,48px); line-height: 1.08; letter-spacing: -.02em; margin: 10px 0 0; color: #fff; }
.page-cta__title em { font-style: italic; color: var(--brand); }
.app-cta__divider { display: flex; align-items: center; gap: 16px; max-width: 420px; margin: 30px auto 6px; color: rgba(255,255,255,.6); font-size: 12px; }
.app-cta__divider span { flex: 1; height: 1px; background: rgba(255,255,255,.22); }
.app-cta__divider em { font-style: normal; letter-spacing: .12em; text-transform: uppercase; }
.page-cta .book-badge { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); }
.page-cta .book-badge:hover { background: rgba(255,255,255,.18); }
.app-cta__lang { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 14px; }

/* ============================================================
   SERVICE PAGE REDESIGN — image-led, left-aligned, alternating
   ============================================================ */
/* Split hero with image */
.svc-hero { padding: clamp(128px,15vw,196px) 0 clamp(20px,3vw,44px); }
.svc-hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px,4.5vw,68px); align-items: center; }
.svc-hero__copy .eyebrow { justify-content: flex-start; }
.svc-hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px,4.4vw,60px); line-height: 1.04; letter-spacing: -.02em; margin: 16px 0 0; color: var(--ink); }
.svc-hero h1 em { font-style: italic; color: var(--brand-2); }
.svc-hero__lead { color: var(--muted); font-size: clamp(16px,1.2vw,19px); line-height: 1.7; margin: 18px 0 0; max-width: 58ch; }
.svc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.svc-hero__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero__chip { position: absolute; left: 18px; bottom: 18px; right: 18px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.svc-hero__chip svg { width: 26px; height: 26px; color: var(--brand-2); flex: none; }
.svc-hero__chip strong { font-family: var(--font-display); color: var(--ink); display: block; font-size: 16px; }
.svc-hero__chip small { color: var(--muted); font-size: 13px; }

/* Alternating image+text split (extends .contact-split) */
.contact-split { align-items: stretch; }
.contact-split__copy { align-self: center; }
.contact-split--rev .contact-split__media { order: -1; }
.contact-split__copy { text-align: left; }
.contact-split__copy h2, .contact-split__copy h3 { text-align: left !important; }

/* Tinted band for vertical rhythm */
.band { background: linear-gradient(180deg, var(--brand-4), #ffffff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band--solid { background: var(--brand-4); }

/* Feature-card icon */
.feature-card__ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg,#7DDAD6,#2BA39E); color: #fff; }
.feature-card__ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* Left-aligned section header */
.section-head--left { text-align: left !important; margin-left: 0 !important; }
.section-head--left .eyebrow { justify-content: flex-start; }

/* small image strip */
.media-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.media-strip img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow); }

@media (max-width: 860px) {
  .svc-hero__grid { grid-template-columns: 1fr; }
  .svc-hero__media { aspect-ratio: 16/11; max-height: 460px; }
  .contact-split--rev .contact-split__media { order: 0; }
}
@media (max-width: 700px) { .media-strip { grid-template-columns: repeat(2,1fr); } }

/* Brand wall (typographic wordmarks — not official logos) */
.brand-wall { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; max-width: 940px; margin: 0 auto; }
.brand-wall__item { display: grid; place-items: center; text-align: center; min-height: 92px; padding: 16px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow); font-family: var(--font-display); font-weight: 500; font-size: clamp(17px,1.7vw,23px); letter-spacing: .04em; color: var(--ink); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.brand-wall__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--brand-2); }
@media (max-width: 760px) { .brand-wall { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .brand-wall { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER — sitemap layout (overrides base .footer rules)
   ============================================================ */
.footer__top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}
.footer__brand { flex: 1 1 320px; max-width: 480px; }
.footer__cta {
  flex: 0 1 360px; display: flex; flex-direction: column; gap: 6px;
  padding: 22px 26px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; box-shadow: var(--shadow-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.footer__cta:hover { transform: translateY(-4px); box-shadow: 0 24px 52px rgba(11,23,51,.22); }
.footer__cta-eyebrow { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }
.footer__cta strong { display: flex; align-items: center; gap: 10px; justify-content: space-between; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2vw, 26px); }
.footer__cta small { opacity: .92; font-size: 13.5px; }

.footer .footer__cols { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 30px 26px; }
.footer__col h5 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin: 0 0 16px; }
.footer__col a, .footer__col p { display: block; color: var(--muted); margin: 0 0 9px; font-size: 14.5px; transition: color .25s; }
.footer__col a:hover { color: var(--brand-2); }
.footer__more { font-weight: 600; color: var(--ink) !important; }
.footer__addr { line-height: 1.55; }
.footer__apps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.footer__apps a { margin: 0; padding: 7px 14px; border: 1px solid var(--line); border-radius: 99px; font-size: 13px; font-weight: 600; color: var(--ink) !important; }
.footer__apps a:hover { border-color: var(--brand-2); color: var(--brand-2) !important; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--ink); }
.footer__legal span { color: var(--muted); }
@media (max-width: 1040px) { .footer .footer__cols { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .footer .footer__cols { grid-template-columns: repeat(2, 1fr); } .footer__cta { flex-basis: 100%; } }
@media (max-width: 440px)  { .footer .footer__cols { grid-template-columns: 1fr; } }
