/* ===========================================================
   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); }
}
/* ===========================================================
   Contact page specific
   =========================================================== */

.page-hero { padding: 3.5rem 0; }
.page-hero .inner { max-width: 48rem; }
.page-hero h1 { margin-top: 0.75rem; font-size: clamp(2.6rem, 5vw, 3.8rem); }
.page-hero p { margin-top: 1rem; line-height: 1.7; color: rgba(31, 31, 31, 0.7); }

.contact-grid { display: grid; gap: 2.5rem; }
.details-grid { display: grid; gap: 1rem; }
.detail-card { display: flex; gap: 0.875rem; padding: 1.25rem; }
.detail-card .icon { margin-top: 0.15rem; color: var(--brand); }
.detail-card .label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(31, 31, 31, 0.5);
}
.detail-card .value { margin-top: 0.25rem; font-weight: 700; }
.contact-photo { margin-top: 1rem; height: 13rem; width: 100%; border-radius: 1rem; object-fit: cover; }

/* form */
.enquiry-form { padding: 1.75rem; }
.enquiry-form h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.form-grid { margin-top: 1.5rem; display: grid; gap: 1.25rem; }
.field label {
  display: block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(31, 31, 31, 0.6);
}
.field input, .field select, .field textarea {
  margin-top: 0.375rem; width: 100%; border: 1px solid var(--border); border-radius: 0.75rem;
  background-color: var(--white); padding: 0.65rem 1rem;
  font-family: var(--font-sans); font-size: 0.875rem; color: var(--charcoal);
  outline: none; transition: border-color 0.18s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--gray); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); }
.enquiry-form .btn { margin-top: 1.5rem; width: 100%; }
.form-note { margin-top: 0.75rem; font-size: 0.75rem; color: var(--gray); }

@media (min-width: 640px) {
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .field.full { grid-column: span 2; }
  .enquiry-form .btn { width: auto; }
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .details-grid { grid-template-columns: 1fr; }
}
