/* ============================================
   C&Z Partners — Foreign National Criminal Defence
   Guangzhou, China
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #132038;
  --navy-light: #1c3050;
  --gold: #b8963e;
  --gold-dark: #9a7e34;
  --gold-light: #d4b76a;
  --gold-pale: rgba(184, 150, 62, 0.08);
  --cream: #f8f6f0;
  --white: #ffffff;
  --text: #1e2d3d;
  --text-muted: #5a6878;
  --text-light: rgba(255,255,255,0.72);
  --border: #e2ded4;
  --border-light: rgba(255,255,255,0.08);
  --shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 6px 32px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 16px 56px rgba(10, 22, 40, 0.16);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p { text-align: justify; }

/* exceptions — centred text */
.hero-lead,
.emergency-bar,
.section-intro,
.article-cta p,
.c-card__label,
.c-card__action,
.c-detail__note,
.footer-bottom,
.footer-brand p,
.hero-contact-item span,
.hero-contact-item a,
.hero-eyebrow span,
.page-hero p,
.blog-card p,
.news-item p,
.step-card p { text-align: left; }

.hero h1,
.section-title,
.article-header h1,
.blog-card h3,
.news-item h3,
.team-card h3,
.page-hero h1,
.article-cta h3,
.c-card__value,
.c-card__label,
.footer-col h4,
.c-detail h4,
.faq-item summary { text-align: left; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: min(1160px, 90vw);
  margin-inline: auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-intro {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 150, 62, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.3);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
  background: rgba(10, 22, 40, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  flex-shrink: 0;
}

/* ── Framed C&Z mark ── */
.logo-framed {
  text-align: center;
  font-family: var(--font-serif);
  line-height: 1;
}

.logo-framed__line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.logo-framed__line--top    { margin-bottom: 0.4rem; }
.logo-framed__line--bottom { margin-top: 0.4rem; }

.logo-framed__mark {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.logo-framed__amp {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.logo-framed__word {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.15rem;
}

/* ── Side word ── */
.logo-sideword {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-left: 1px solid var(--gold);
  padding-left: 0.9rem;
  white-space: nowrap;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-main a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-main a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.55rem 1.2rem !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,22,40,0.9) 0%, rgba(19,32,56,0.78) 40%, rgba(10,22,40,0.94) 100%),
    url("../images/TEAM.jpeg") center 30% / cover no-repeat;
  filter: saturate(0.6);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6rem;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.16;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-contact-item label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.hero-contact-item a,
.hero-contact-item span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}
.hero-contact-item a:hover { color: var(--gold-light); }

/* ---- About ---- */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about .section-title { margin-bottom: 3rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-text p:first-of-type {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-card .number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Services ---- */
.services {
  padding: 7rem 0;
  background: var(--white);
}

.services .section-intro { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Why Us ---- */
.why-us {
  padding: 7rem 0;
  background: var(--navy);
  color: var(--white);
}

.why-us .section-title { color: var(--white); }
.why-us .section-intro { color: var(--text-light); margin-bottom: 3.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-item {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.why-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Approach ---- */
.approach {
  padding: 7rem 0;
  background: var(--cream);
}

.approach .section-intro { margin-bottom: 4rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  position: relative;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
}

.step-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.step-card:hover .step-num { color: var(--gold); opacity: 0.6; }
.step-card:hover h3 { color: var(--white); }
.step-card:hover p { color: rgba(255,255,255,0.78); }

.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition), opacity var(--transition);
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  transition: color var(--transition);
}

/* ---- Offences ---- */
.offences {
  padding: 6rem 0;
  background: var(--white);
}

.offence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.offence-tag {
  padding: 0.65rem 1.3rem;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  cursor: default;
}

.offence-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ---- Team ---- */
.team {
  padding: 7rem 0;
  background: var(--cream);
}

.team .section-intro { margin-bottom: 3rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 3/4;
  background: #d5d2cc;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}

.team-card:hover h3 { color: var(--gold-dark); }

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- FAQ ---- */
.faq {
  padding: 7rem 0;
  background: var(--white);
}

.faq .section-intro { margin-bottom: 3rem; }

.faq-list {
  max-width: 800px;
}

/* Accordion: details/summary */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  margin-left: 1.5rem;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '\2013';
  transform: rotate(180deg);
}
.faq-item summary:hover { color: var(--gold); }

.faq-answer {
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
}

/* ---- Contact ---- */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact .section-intro { margin-bottom: 3rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── Left: contact cards ── */
.contact-card-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Base card */
.c-card {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.2rem 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}
.c-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.c-card__icon {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.c-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  grid-column: 2;
}

.c-card__value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  grid-column: 2;
}

.c-card__action {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  transition: color var(--transition);
}
.c-card:hover .c-card__action { color: var(--gold-dark); }

/* WhatsApp accent */
.c-card--whatsapp { border-left: 3px solid #25D366; }
.c-card--whatsapp .c-card__icon { color: #25D366; }

/* Email accent */
.c-card--email { border-left: 3px solid var(--navy); }
.c-card--email .c-card__icon { color: var(--navy); }

/* WeChat QR inside card */
.c-card--wechat {
  grid-template-columns: 32px 1fr 100px;
  border-left: 3px solid #07C160;
}
.c-card--wechat .c-card__icon { color: #07C160; }

.c-card__qr {
  width: 90px;
  height: 90px;
  object-fit: contain;
  grid-column: 3;
  grid-row: 1 / 3;
  border: 1px solid var(--border);
  padding: 4px;
  background: var(--white);
}

/* ── Right: details sidebar ── */
.contact-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
}

.c-detail {
  margin-bottom: 1.75rem;
}
.c-detail:last-of-type { margin-bottom: 2rem; }

.c-detail h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.c-detail p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
}

.c-detail__note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.c-sidebar-qr {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}

.c-sidebar-qr-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.footer-brand .logo-framed__mark { font-size: 1.6rem; }
.footer-brand .logo-framed__word { font-size: 0.58rem; }
.footer-brand .logo-framed__line { width: 34px; }
.footer-brand .logo-sideword { font-size: 0.88rem; }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a:hover { color: var(--gold); }

/* ---- Emergency bar ---- */
.emergency-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.emergency-bar a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .nav-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main a { font-size: 1rem; }

  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-card-row { gap: 0.75rem; }
  .contact-sidebar { padding: 1.5rem; }
  .c-card { padding: 1rem 1.25rem; }
  .c-card__qr { width: 70px; height: 70px; }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-list { max-width: 100%; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-contact { gap: 1.5rem; }
  .hero h1 { font-size: 1.85rem; }
}

/* ---- Blog Index ---- */
.page-hero {
  padding: calc(var(--header-h) + 5rem) 0 3rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.page-hero .back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--gold);
  transition: color var(--transition);
}
.page-hero .back-home:hover { color: var(--white); }
.page-hero .back-home .arrow { font-size: 1.2rem; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.blog-index { padding: 4rem 0 3rem; }

/* Conversion CTA on blog index */
.blog-cta-section {
  padding: 0 0 6rem;
}
.blog-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--navy);
  color: var(--white);
  max-width: 600px;
  margin-inline: auto;
}
.blog-cta h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.blog-cta p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.blog-cta .btn { margin: 0.3rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--white);
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-3px);
}
.blog-card .card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-card time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- Article Page ---- */
.blog-article {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.article-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.article-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-header time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.article-body h2 {
  font-size: 1.55rem;
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.article-body ol li { list-style-type: decimal; }

.article-body blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.article-body blockquote a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body strong { color: var(--navy); font-weight: 600; }
.article-body em { font-style: italic; }

.article-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.article-cta h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.article-cta p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.article-cta .btn { margin: 0.35rem; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-body { font-size: 1rem; }
  .blog-article { padding-inline: 0.5rem; }
}
