/* ===========================================================
   Shadow K9 — shared foundation (fonts, tokens, header, footer,
   buttons, typography, layout helpers)
   =========================================================== */

@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Zain"; src: url("fonts/zain-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Zain"; src: url("fonts/zain-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Zain"; src: url("fonts/zain-latin-900-normal.woff2") format("woff2"); font-weight: 900; font-display: swap; }

:root {
  --brand: #b91419;
  --brand-dark: #8f0f13;
  --brand-accent: #f0500a;
  --charcoal: #1f1f1f;
  --blush: #fdf8f5;
  --white: #ffffff;
  --gray: #8a8a8a;
  --border: #ece4df;
  --border-dark: rgba(253, 248, 245, 0.12);

  --font-display: "Zain", "Nunito", sans-serif;
  --font-sans: "Nunito", system-ui, -apple-system, sans-serif;

  --shadow-card: 0 1px 2px rgba(31, 31, 31, 0.04), 0 12px 28px -18px rgba(31, 31, 31, 0.22);
  --shadow-lift: 0 2px 6px rgba(31, 31, 31, 0.06), 0 26px 50px -26px rgba(31, 31, 31, 0.3);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
}
p { margin: 0; }

h1 { font-size: clamp(2.9rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); }
h3 { font-size: 1.5rem; }

/* ---------- layout helpers ---------- */
.container { width: min(100% - 2.5rem, 1180px); margin-inline: auto; }
.section { padding: 4rem 0; }
.section-sm { padding: 3rem 0; }
.bg-blush { background-color: var(--blush); }
.bg-charcoal { background-color: var(--charcoal); color: var(--blush); }
.bg-brand { background-color: var(--brand); color: var(--white); }
.bg-white { background-color: var(--white); }
.muted { color: rgba(31, 31, 31, 0.7); }
.small { font-size: 0.875rem; }
.text-brand { color: var(--brand); }
.text-accent { color: var(--brand-accent); }
.lead { margin-top: 1.25rem; max-width: 36rem; font-size: 1.05rem; line-height: 1.65; color: rgba(31, 31, 31, 0.7); }

.eyebrow {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.grid { display: grid; gap: 1.25rem; }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.section-head h2 { margin-top: 0.5rem; }
.section-head .muted { margin-top: 0.75rem; }
.link-brand { font-size: 0.875rem; font-weight: 800; color: var(--brand); }
.link-brand:hover { color: var(--brand-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background-color: var(--brand); color: var(--white); box-shadow: 0 14px 28px -16px var(--brand); }
.btn-primary:hover { background-color: var(--brand-dark); }
.btn-outline { border: 1.5px solid var(--border); background-color: var(--white); color: var(--charcoal); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-onred { background-color: var(--white); color: var(--brand); }
.btn-onred:hover { background-color: var(--blush); }
.btn-sm { font-size: 0.875rem; padding: 0.65rem 1.3rem; }

/* ---------- cards ---------- */
.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
}
.icon { width: 1.25rem; height: 1.25rem; flex: none; }
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background-color: var(--blush);
  color: var(--brand);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; height: 70px; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 0.75rem;
}
.brand-text { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; line-height: 1; }
.nav { display: none; align-items: center; gap: 2rem; }
.nav a { font-size: 0.875rem; font-weight: 600; color: rgba(31, 31, 31, 0.75); transition: color 0.18s ease; }
.nav a:hover, .nav a.active { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { display: none; font-size: 0.875rem; font-weight: 700; }
.mobile-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 0.65rem 0; border-top: 1px solid var(--border);
}
.mobile-nav a { font-size: 0.875rem; font-weight: 600; color: rgba(31, 31, 31, 0.75); }
.mobile-nav a.active { color: var(--brand); }

/* ---------- footer ---------- */
.site-footer { background-color: var(--charcoal); color: var(--blush); }
.footer-grid { display: grid; gap: 2.5rem; padding: 3.5rem 0; }
.footer-about { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.7; color: rgba(253, 248, 245, 0.65); }
.footer-title {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(253, 248, 245, 0.5);
}
.footer-list { margin-top: 1rem; display: grid; gap: 0.65rem; font-size: 0.875rem; color: rgba(253, 248, 245, 0.75); }
.footer-list a { transition: color 0.18s ease; }
.footer-list a:hover { color: var(--brand-accent); }
.footer-list .dim { padding-top: 0.5rem; color: rgba(253, 248, 245, 0.55); }
.footer-bottom { border-top: 1px solid var(--border-dark); }
.footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding: 1.25rem 0; font-size: 0.75rem; color: rgba(253, 248, 245, 0.5);
}
.footer-bottom-inner .links { display: flex; gap: 1.25rem; }
.footer-bottom-inner a:hover { color: var(--brand-accent); }
.footer-brand-accent { color: var(--brand-accent); }

/* ---------- stats band (home + about) ---------- */
.stats-grid { display: grid; gap: 2rem; text-align: center; }
.stat-value { font-family: var(--font-display); font-weight: 900; font-size: 2.75rem; line-height: 1; color: var(--brand-accent); }
.stat-label { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.02em; color: rgba(253, 248, 245, 0.7); }

/* ---------- closing CTA band ---------- */
.cta-band {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1.5rem; text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); color: var(--white); }
.cta-band .sub { margin-top: 0.5rem; font-weight: 700; color: rgba(255, 255, 255, 0.8); }

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: row; }
}
@media (min-width: 768px) {
  .nav { display: flex; }
  .mobile-nav { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .cta-band { flex-direction: row; text-align: left; }
}
@media (min-width: 1024px) {
  .header-phone { display: block; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ===========================================================
   Home page specific
   =========================================================== */

/* hero */
.hero { padding: 3.5rem 0; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero h1 { margin-top: 0.75rem; }
.hero-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-points {
  margin-top: 2.25rem; display: grid; gap: 0.75rem 2rem;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
}
.hero-points li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 700; }
.dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background-color: var(--brand-accent); }
.hero-media { position: relative; align-self: center; }
.hero-media img { aspect-ratio: 1 / 1; height: auto; width: 100%; border-radius: 1.75rem; object-fit: cover; box-shadow: var(--shadow-lift); }
.hero-badge {
  position: absolute; bottom: -1.25rem; left: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  background-color: var(--white); border-radius: 1rem;
  padding: 1rem 1.25rem; box-shadow: var(--shadow-card);
}
.hero-badge .num { font-family: var(--font-display); font-weight: 900; font-size: 1.875rem; line-height: 1; color: var(--brand); }
.hero-badge .txt { font-size: 0.75rem; font-weight: 700; line-height: 1.3; color: rgba(31, 31, 31, 0.7); }

/* trust strip */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background-color: var(--white); }
.trust-grid { display: grid; gap: 1.75rem 2.5rem; padding: 2.25rem 0; }
.trust-item { display: flex; gap: 0.875rem; }
.trust-item .icon { margin-top: 0.15rem; color: var(--brand-accent); }
.trust-item strong { font-weight: 800; }
.trust-item p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--gray); }

/* services */
.services-grid { display: grid; gap: 1.25rem; margin-top: 2.25rem; }
.service-card { display: flex; flex-direction: column; padding: 1.5rem; }
.service-card h3 { margin-top: 1rem; }
.service-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.65; color: rgba(31, 31, 31, 0.7); }
.service-card .price { margin-top: 1rem; font-size: 0.875rem; font-weight: 800; color: var(--brand); }
.service-card .enquire { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 800; }
.service-card .enquire:hover { color: var(--brand); }
.service-card:hover { box-shadow: var(--shadow-lift); }
.service-card.featured {
  background-color: var(--charcoal); color: var(--blush);
  border: 0; border-radius: 1.25rem; box-shadow: var(--shadow-lift);
}
.service-card.featured .icon-badge { background-color: var(--brand); color: var(--white); }
.service-card.featured p { color: rgba(253, 248, 245, 0.7); }
.service-card.featured .price { color: var(--brand-accent); }
.service-card.featured .enquire { color: var(--blush); }

/* why choose us */
.why-grid { display: grid; gap: 2.5rem; }
.why-cards { display: grid; gap: 1.25rem; }
.why-card { padding: 1.25rem; }
.why-card .icon { color: var(--brand); }
.why-card h3 { margin-top: 0.75rem; font-size: 1.25rem; }
.why-card p { margin-top: 0.4rem; font-size: 0.875rem; line-height: 1.65; color: rgba(31, 31, 31, 0.7); }

/* about preview */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split img { aspect-ratio: 5 / 4; width: 100%; border-radius: 1.5rem; object-fit: cover; box-shadow: var(--shadow-card); }
.split h2 { margin-top: 0.5rem; }
.split p { margin-top: 1rem; line-height: 1.7; color: rgba(31, 31, 31, 0.7); }
.split .btn { margin-top: 1.5rem; }

/* testimonials */
.testi-grid { display: grid; gap: 1.25rem; margin-top: 2.25rem; }
.testi { display: flex; flex-direction: column; padding: 1.5rem; margin: 0; }
.stars { display: flex; gap: 0.125rem; color: var(--brand-accent); }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.testi blockquote { margin: 1rem 0 0; flex: 1; line-height: 1.7; color: rgba(31, 31, 31, 0.8); }
.testi figcaption {
  margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.testi figcaption img { width: 2.75rem; height: 2.75rem; border-radius: 999px; object-fit: cover; }
.testi .name { display: block; font-size: 0.875rem; font-weight: 800; }
.testi .detail { display: block; font-size: 0.75rem; color: var(--gray); }

/* gallery */
.gallery-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.gallery-grid img { height: 16rem; width: 100%; border-radius: 1rem; object-fit: cover; }
.gallery-note { max-width: 22rem; font-size: 0.875rem; color: rgba(31, 31, 31, 0.7); }
.gallery-cta { display: flex; flex-direction: column; justify-content: center; padding: 1.5rem; }
.gallery-cta h3 { font-size: 1.5rem; }
.gallery-cta p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(31, 31, 31, 0.7); }
.gallery-cta .btn { margin-top: 1rem; align-self: flex-start; }

@media (min-width: 640px) {
  .hero-points { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .span-2, .gallery-cta { grid-column: span 2; }
}
@media (min-width: 768px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .hero { padding: 4rem 0; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 0.85fr 1.15fr; }
  .split { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid img { height: 18rem; }
  .gallery-grid img.short, .gallery-cta { height: 16rem; }
}
