/* ==========================================================================
   KRISHNA ASTRO — SHARED STYLESHEET
   Load this file on every page of the site. Do not duplicate these rules
   inline on individual pages — add page-specific rules in a page's own
   <style> block only if truly one-off.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Colour: white-forward palette with a single warm-orange accent ramp */
  --white:        #FFFFFF;
  --sand:         #FFF7ED; /* secondary section background — still reads as "white" */
  --ink:          #2A1B10; /* primary text — near-black warm brown, high contrast */
  --ink-soft:     #6B5A4C; /* secondary text / meta, still >- 7:1 on white */
  --tint:         #FFE8D1; /* pale orange — badges, card fills, hover backgrounds */
  --accent:       #F2792B; /* mid orange — icons, borders, links, small accents */
  --accent-deep:  #C2410C; /* deep orange — buttons, high-contrast accent text */
  --accent-deeper:#9A3208; /* button hover / active */
  --border:       #F0DFCB; /* hairline dividers on light backgrounds */
  --shadow:       rgba(42, 27, 16, 0.14);
  --navy:         #0C225D; /* header & footer background */
  --navy-soft:    #23386E; /* subtle borders/hover fills on navy */
  --on-navy:      #FFFFFF;
  --on-navy-soft: #B7C2DE; /* secondary text on navy — meta, taglines */

  --font-display: 'Frank Ruhl Libre', Georgia, serif;
  --font-body:    'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;

  --fs-h1: clamp(2.1rem, 1.7rem + 1.8vw, 3.25rem);
  --fs-h2: clamp(1.6rem, 1.4rem + 1vw, 2.3rem);
  --fs-h3: 1.3rem;
  --fs-lead: 1.15rem;
  --fs-body: 1rem;
  --fs-small: 0.9rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --header-height: 80px;
}

/* ---- Reset & base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* `hidden` on body creates a scrolling ancestor and prevents the header
   from sticking to the viewport. `clip` does not create that ancestor. */
html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: calc(var(--header-height) + 1rem); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.nav-open { position: fixed; width: 100%; overflow: hidden; padding-top: var(--header-height); }
body.nav-open .site-header { position: fixed; left: 0; right: 0; top: 0; }
main, .container, .content-text, .content-image, .hero-copy,
.hero-figure, .card-grid > *, .footer-grid > *, .steps > *, .btn-row { min-width: 0; }
h1, h2, h3, p, li { overflow-wrap: break-word; }
button { font: inherit; }

img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--accent-deeper); text-decoration: underline; }
/* Inline links inside body prose stay underlined by default — readers need the cue mid-sentence.
   Nav, footer, and card links rely on colour + hover instead, which reads cleaner in a list. */
main p a { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--space-sm); max-width: 68ch; }
p.lead { font-size: var(--fs-lead); color: var(--ink-soft); }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: var(--space-xl) 0; position: relative; }
.section--sand {
  background: var(--sand);
  /* Faint dotted texture so large sand areas read as a designed surface rather than flat fill */
  background-image: radial-gradient(circle at 1px 1px, rgba(194, 65, 12, 0.055) 1px, transparent 0);
  background-size: 22px 22px;
}
.section--tint {
  /* Distinct third band colour, so a section placed between two others never repeats
     whichever neighbour it lands next to. */
  background: linear-gradient(180deg, #FFF3E6 0%, #FFE9D6 100%);
}
.section--deep {
  background: var(--accent-deep);
  background-image: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent-deeper) 100%);
  color: var(--white);
}

/* Decorative hairline between stacked content bands, tinted to the accent rather than grey */
.section--sand + section:not(.section--deep)::before,
section:not(.section--sand):not(.section--deep) + .section--sand::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(var(--container), 92vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section--deep h2, .section--deep p { color: var(--white); }

.section-head { max-width: 62ch; margin: 0 0 var(--space-lg); }
.section-head p { color: var(--ink-soft); }

/* Short accent rule under major headings — small detail that stops long text pages reading
   as an undifferentiated wall of type. */
.section-head h2::after,
.content-text > h2::after {
  content: ""; display: block; width: 56px; height: 3px; border-radius: 2px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}
.section--deep .section-head h2::after { background: rgba(255,255,255,0.6); }

/* visually-hidden but available to assistive tech */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--ink); color: var(--white);
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; line-height: 1.35; text-align: center;
  min-height: 44px; min-width: 0; max-width: 100%;
  white-space: normal; overflow-wrap: anywhere;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn svg { display: block; width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn--primary { background: var(--accent-deep); color: var(--white); }
.btn--primary:hover { background: var(--accent-deeper); color: var(--white); }

.btn--secondary { background: transparent; color: var(--accent-deep); border-color: var(--accent-deep); }
.btn--secondary:hover { background: var(--tint); color: var(--accent-deeper); border-color: var(--accent-deeper); }

.btn--onDeep { background: var(--white); color: var(--accent-deep); }
.btn--onDeep:hover { background: var(--sand); }
.btn--outlineLight { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outlineLight:hover { background: var(--white); border-color: var(--white); color: var(--accent-deep); }

.btn--onNavy { background: transparent; color: var(--on-navy); border-color: rgba(255,255,255,0.55); }
.btn--onNavy:hover { background: rgba(255,255,255,0.12); border-color: var(--on-navy); color: var(--on-navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row > .btn { flex: 0 1 auto; }
@media (max-width: 479px) {
  .hero .btn-row > .btn, .cta-banner .btn-row > .btn { width: 100%; }
}

/* ---- Header ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-soft);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.85rem; padding-bottom: 0.85rem; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name, .brand-tagline { white-space: nowrap; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  color: var(--on-navy); letter-spacing: 0.01em;
}
.brand-tagline { font-size: 0.72rem; color: var(--on-navy-soft); letter-spacing: 0.03em; }

.logo-ph {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); font-size: 0.55rem; font-weight: 700;
  text-align: center; line-height: 1.15; letter-spacing: 0.02em;
}
.site-footer .logo-ph { background: rgba(255,255,255,0.08); }

.site-logo {
  display: block; flex: 0 0 46px; width: 46px; height: 46px;
  overflow: hidden; border-radius: 10px; background: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.site-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 359px) {
  .site-logo { flex-basis: 40px; width: 40px; height: 40px; }
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--navy); border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm); cursor: pointer; color: var(--on-navy); flex-shrink: 0;
  position: relative; z-index: 120; /* must beat .main-nav's z-index (110) or the open
    drawer covers this button and it can no longer be tapped to close itself. A solid
    background (not transparent) is just as important here — otherwise the drawer's white
    panel shows through behind the button and the white icon becomes invisible against it. */
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.main-nav {
  position: fixed; inset: var(--header-height) 0 0 auto; width: min(320px, 88vw);
  background: var(--white); padding: 1rem 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%); visibility: hidden; pointer-events: none;
  transition: transform 0.2s ease, visibility 0.2s;
  overscroll-behavior: contain;
  overflow-y: auto; box-shadow: -8px 0 24px var(--shadow); z-index: 110;
}
.main-nav.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.main-nav ul { list-style: none; padding: 0; margin: 0; }
.main-nav a {
  display: block; padding: 0.75rem 0; color: var(--ink); text-decoration: none;
  font-weight: 500; border-bottom: 1px solid var(--border);
}
.main-nav a:hover { color: var(--accent-deep); }
.nav-group-label {
  font-size: 0.78rem; color: var(--ink-soft); margin: 1.25rem 0 0.25rem;
}
.nav-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
/* Override navigation-link styling only for CTA buttons. */
.main-nav .nav-cta .btn {
  display: flex; width: 100%; padding: 0.85rem 1rem;
  font-weight: 600; line-height: 1.35; border: 2px solid transparent;
}
.main-nav .nav-cta .btn--primary { color: var(--white); }
.main-nav .nav-cta .btn--secondary { color: var(--accent-deep); border-color: var(--accent-deep); }

.nav-scrim {
  position: fixed; inset: var(--header-height) 0 0; background: rgba(12,34,93,0.45);
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease; z-index: 105;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

.header-cta { display: none; }

@media (min-width: 1180px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static; width: auto; transform: none; box-shadow: none;
    padding: 0; background: transparent; overflow: visible;
    visibility: visible; pointer-events: auto;
  }
  .main-nav ul { display: flex; align-items: center; gap: 1.75rem; }
  .main-nav a { border-bottom: none; padding: 0.4rem 0; font-size: 0.95rem; color: var(--on-navy); white-space: nowrap; }
  .main-nav a:hover { color: var(--accent); }
  .nav-group-label { display: none; }
  .nav-sub { display: none; }
  .nav-cta { display: none; }
  .nav-scrim { display: none; }
  .header-cta { display: flex; gap: 0.75rem; }
  .header-cta .btn { padding: 0.65rem 1.1rem; font-size: 0.92rem; white-space: nowrap; }
}

/* ---- Sticky mobile CTA bar --------------------------------------------------- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--ink);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px var(--shadow);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transition: transform 0.2s ease;
}
.mobile-cta-bar.is-hidden { transform: translateY(100%); visibility: hidden; pointer-events: none; }
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 0.5rem; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; min-height: 56px; min-width: 0; white-space: nowrap;
}
.mobile-cta-bar a svg { display: block; width: 1.2em; height: 1.2em; flex-shrink: 0; }
.mobile-cta-bar .call { background: var(--accent-deep); color: var(--white); }
.mobile-cta-bar .whatsapp { background: var(--ink); color: var(--white); }

body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 359px) {
  .site-header .container { gap: 0.5rem; padding-left: 0.75rem; padding-right: 0.75rem; }
  .brand { gap: 0.5rem; }
  .brand-name { font-size: 1.2rem; }
  .brand-tagline { font-size: 0.65rem; }
  .logo-ph { width: 40px; height: 40px; }
}

@media (min-width: 1180px) {
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  padding-top: var(--space-lg);
  /* Soft warm wash behind the hero so the top of every page has some depth instead of flat white */
  background:
    radial-gradient(ellipse 60% 70% at 85% 10%, rgba(242,121,43,0.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 5% 90%, rgba(12,34,93,0.06), transparent 65%);
}
.hero .container {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); align-items: center;
}
.hero-copy p.lead { font-size: var(--fs-lead); }
.hero-trustline {
  display: flex; align-items: center; gap: 0.6rem; margin-top: var(--space-md);
  font-size: var(--fs-small); color: var(--ink-soft);
}
.stars { display: inline-flex; gap: 2px; color: var(--accent-deep); }
.stars svg { width: 16px; height: 16px; }

.hero-figure {
  position: relative; justify-self: center; width: 100%; max-width: 480px;
}
.arch-frame {
  max-width: 380px; /* keeps the homepage's arch portrait at its original, intentional size —
    inner-page hero images use the wider 480px .hero-figure cap directly instead */

  aspect-ratio: 3 / 4; width: 100%;
  background: var(--tint);
  border-radius: 200px 200px 12px 12px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep); font-family: var(--font-display); font-size: 0.95rem;
  text-align: center; padding: 1.5rem;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero .container { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}

/* ---- Stats row -------------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats > div {
  text-align: center; padding: var(--space-sm) 0.5rem;
  border-radius: var(--radius-md);
  transition: background-color 0.18s ease;
}
.stats > div:hover { background: var(--tint); }
.stat-num {
  font-family: var(--font-display); font-size: 2.1rem; color: var(--accent-deep);
  display: block; line-height: 1.1;
}
.stat-label { font-size: var(--fs-small); color: var(--ink-soft); }

@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

/* ---- About ------------------------------------------------------------------ */
.about .container {
  display: grid; gap: var(--space-lg); align-items: center;
}
@media (min-width: 900px) {
  .about .container { grid-template-columns: 0.85fr 1.15fr; }
  .about .arch-frame { max-width: 340px; }
}

/* ---- Service cards ------------------------------------------------------------ */
.card-grid {
  display: grid; gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-md); background: var(--white);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.service-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--tint);
  display: flex; align-items: center; justify-content: center; color: var(--accent-deep);
  margin-bottom: 0.25rem;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: var(--fs-small); color: var(--ink-soft); margin-bottom: 0.5rem; }
.service-card .card-link { font-weight: 600; font-size: 0.92rem; }

/* ---- Generic image placeholder (used throughout inner-page content) ----------- */
.img-ph {
  background: var(--tint); border: 1px dashed #E6B98A; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 0.4rem; color: var(--accent-deep); font-family: var(--font-body); font-weight: 500; font-size: 0.78rem;
  line-height: 1.4; padding: 1rem; aspect-ratio: 4 / 3; overflow: hidden; width: 100%; opacity: 0.85;
}
.img-ph svg { width: 26px; height: 26px; opacity: 0.6; flex-shrink: 0; }
.img-ph.wide { aspect-ratio: 16 / 9; }
.img-ph.tall { aspect-ratio: 3 / 4; }
.img-ph.square { aspect-ratio: 1 / 1; }
.img-ph img { width: 100%; height: 100%; object-fit: cover; }

/* Uploaded WebP images have their own wrapper; placeholder padding, opacity
   and decorative icons must not affect real photographs. */
.site-image {
  position: relative; display: block; width: 100%; min-width: 0;
  aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--sand); padding: 0; opacity: 1;
}
.site-image > img {
  display: block; position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.site-image--contain > img { object-fit: contain; }
.arch-frame.site-image { aspect-ratio: 3 / 4; max-width: 380px; }
/* The supplied square portrait includes lettering along its top edge. */
.arch-frame.site-image--contain { aspect-ratio: 1 / 1; border-radius: var(--radius-md); }
.content-split .content-image .site-image { aspect-ratio: 3 / 2; max-height: 300px; }
.photo-card .site-image { border: 0; border-radius: 0; margin: 0; }
@supports not (aspect-ratio: 4 / 3) {
  .site-image { height: 300px; }
  .arch-frame.site-image { height: 420px; }
}

.img-row { display: grid; gap: var(--space-md); grid-template-columns: 1fr; margin: var(--space-md) 0; }
@media (min-width: 700px) { .img-row.cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* Body content paired with an image: proper two-column split at desktop (not a small float in a
   narrow column) so the image gets a real share of the section's width instead of looking
   undersized. Text keeps a comfortable reading measure via max-width on its own paragraphs. */
.content-split { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; align-items: center; }
.content-split + .content-split { margin-top: var(--space-lg); }
.content-split + h3, .content-followup { margin-top: var(--space-lg); }
.content-split > .content-text p { max-width: 62ch; }
/* Content images sit at a gentler 3:2 and are height-capped so a placeholder never dominates
   the section the way a tall 4:3 block did on wide screens. */
.content-split .content-image .img-ph { aspect-ratio: 3 / 2; max-height: 300px; }
@media (min-width: 800px) {
  .content-split { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .content-split.img-left > .content-text { order: 2; }
  .content-split.img-left > .content-image { order: 1; }
  .content-split .content-image .img-ph { max-width: none; }
}
@media (min-width: 900px) { .img-row.cols-3 { grid-template-columns: repeat(3, 1fr); } }

/* A photo is optional: give sections without one a single readable column. */
.content-split.content-split--text { grid-template-columns: minmax(0, 1fr); }
.content-split--text > .content-text { max-width: 78ch; }
.content-split--text > .content-text p { max-width: 70ch; }

/* ---- Photo-style service cards (image-forward, with inline Call/WhatsApp) ----- */
.photo-card {
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  background: var(--white); display: flex; flex-direction: column;
  box-shadow: 0 2px 4px rgba(42,27,16,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(42,27,16,0.13);
  border-color: #E6B98A;
}
.photo-card .img-ph { border-radius: 0; margin: 0; }
.photo-card-body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.photo-card-body h3 { font-size: 1.15rem; margin-bottom: 0; }
.photo-card-body p { font-size: var(--fs-small); color: var(--ink-soft); flex: 1; margin-bottom: 0; }
.photo-card-body .btn-row { gap: 0.5rem; margin-top: 0.25rem; }
.photo-card-body .btn { padding: 0.55rem 0.85rem; font-size: 0.84rem; }
.photo-card-body .card-link { font-weight: 600; font-size: 0.88rem; }

/* ---- Also-available services (listed only, no dedicated page) -------------------- */
.service-list { display: grid; gap: var(--space-sm); grid-template-columns: 1fr; list-style: none; padding: 0; margin: 0; }
@media (min-width: 640px) { .service-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-list { grid-template-columns: repeat(3, 1fr); } }
.service-list li {
  margin: 0; display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.service-list li:hover { border-color: #E6B98A; box-shadow: 0 8px 20px rgba(42,27,16,0.09); transform: translateY(-2px); }
.service-list .dot {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--tint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center; margin-top: 0.15rem;
}
.service-list .dot svg { width: 15px; height: 15px; }
.service-list strong { display: block; font-size: 1rem; line-height: 1.3; }
.service-list span { color: var(--ink-soft); font-size: var(--fs-small); }

/* ---- Process steps -------------------------------------------------------------- */
.steps {
  display: grid; gap: var(--space-md);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-left: 3.25rem; }
.step-num {
  position: absolute; left: 0; top: 0;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--tint); color: var(--accent-deep);
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: var(--fs-small); color: var(--ink-soft); }

/* ---- Why choose (checklist) ------------------------------------------------------ */
.checklist { list-style: none; padding: 0; display: grid; gap: var(--space-sm); }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; margin: 0; }
.check-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin-top: 0.1rem;
}
.check-icon svg { width: 14px; height: 14px; }
.checklist strong { display: block; }
.checklist span { color: var(--ink-soft); font-size: var(--fs-small); }
.checklist .check-icon { color: var(--white); }

@media (min-width: 800px) {
  .checklist { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Testimonials: auto-scrolling marquee -------------------------------------- */
.testimonial-marquee {
  overflow: hidden; margin: 0 -1.25rem; padding: 0.5rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonial-track {
  display: flex; gap: var(--space-md); width: max-content;
  padding: 0; animation: testimonial-scroll 52s linear infinite;
}
.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track { animation-play-state: paused; }
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--space-md) / 2)); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; }
  .testimonial-marquee { overflow-x: auto; }
  .testimonial-marquee { mask-image: none; -webkit-mask-image: none; }
  .testimonial-card[aria-hidden="true"] { display: none; }
}
@media (max-width: 639px) {
  /* Swipeable cards on touch screens; no automatic clipping while reading. */
  .testimonial-marquee { margin: 0; overflow-x: auto; scroll-snap-type: x mandatory; mask-image: none; -webkit-mask-image: none; }
  .testimonial-track { animation: none; }
  .testimonial-track > .testimonial-card { flex-basis: min(280px, calc(100vw - 40px)); scroll-snap-align: start; }
  .testimonial-card[aria-hidden="true"] { display: none; }
}
.testimonial-card {
  flex: 0 0 280px; position: relative;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-md); box-shadow: 0 10px 24px var(--shadow);
  border-top: 3px solid var(--accent);
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--tint); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.testimonial-card p { font-size: 0.95rem; color: var(--ink); }
.testimonial-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-city { font-size: 0.82rem; color: var(--ink-soft); }


/* ---- FAQ (native details/summary — no JS needed) -------------------------------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.5rem 1.15rem 0.75rem;
  position: relative; font-weight: 600; font-size: 1.02rem;
  transition: background-color 0.15s ease, color 0.15s ease;
  border-radius: var(--radius-sm);
}
.faq-item summary:hover { background: var(--tint); color: var(--accent-deeper); }
.faq-item[open] summary { color: var(--accent-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0.75rem; top: 1.1rem;
  font-size: 1.4rem; color: var(--accent-deep); font-family: var(--font-body);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 0.75rem 1.15rem; color: var(--ink-soft); }

/* ---- CTA banner ------------------------------------------------------------------ */
.cta-banner { text-align: left; }
.cta-banner .container {
  display: flex; flex-direction: column; gap: var(--space-md);
  align-items: flex-start;
}
@media (min-width: 800px) {
  .cta-banner .container { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-banner .container > div:first-child { flex: 1 1 0; min-width: 0; }
  .cta-banner .btn-row { flex: 0 0 270px; }
  .cta-banner .btn-row > .btn { width: 100%; }
}

/* ---- Footer ------------------------------------------------------------------------ */
.site-footer { background: var(--navy); color: var(--on-navy-soft); padding: var(--space-xl) 0 var(--space-md); }
.site-footer a { color: var(--on-navy-soft); text-decoration: none; }
.site-footer a:hover { color: var(--on-navy); text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; }
.footer-grid {
  display: grid; gap: var(--space-lg); grid-template-columns: 1fr;
  text-align: center; justify-items: center;
}
.footer-brand { justify-content: center; }
@media (min-width: 800px) {
  /* On desktop the four columns read better left-aligned; the centring above is for the
     stacked mobile layout, where a single centred column looks intentional rather than adrift. */
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; text-align: left; justify-items: start; }
  .footer-brand { justify-content: flex-start; }
}
.footer-grid h4 { color: var(--on-navy); font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 0.55rem; font-size: 0.92rem; }
.footer-about p { color: var(--on-navy-soft); font-size: 0.92rem; }
.footer-bottom {
  margin-top: var(--space-lg); padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: center;
  text-align: center;
  font-size: 0.82rem; color: #8C9BC4;
}
.footer-bottom ul { list-style: none; display: flex; gap: 1.25rem; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
.footer-bottom li { margin: 0; }
@media (min-width: 800px) {
  .footer-bottom { justify-content: space-between; text-align: left; }
}
