/* ==========================================================================
   Legal Draft House — main stylesheet
   Palette: deep navy + antique gold | Type: Playfair Display / Inter
   ========================================================================== */

:root {
  --navy-950: #030b1f;
  --navy-900: #04102c;
  --navy-800: #061c45;
  --navy-700: #0a2a63;
  --gold-600: #b07f24;
  --gold-500: #c7963b;
  --gold-400: #d9ab57;
  --gold-100: #f6ecd9;
  --ivory: #f8f6f1;
  --line: #e7eaf1;
  --ink: #101d3d;
  --text: #4d5a75;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-md: 0 14px 40px rgba(6, 28, 69, 0.08);
  --shadow-lg: 0 24px 70px rgba(6, 28, 69, 0.14);
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- Base ---------- */

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

a { text-decoration: none; transition: color 0.25s ease; }

.container { max-width: 1240px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 10px 18px;
  z-index: 2000;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */

.btn-gold,
.btn-navy,
.btn-outline-c {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border: none;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(199, 150, 59, 0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(199, 150, 59, 0.45);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-c {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}
.btn-outline-c:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-3px);
}

.btn-lg-c { padding: 17px 36px; font-size: 1rem; }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8438rem;
  padding: 9px 0;
}
.topbar i { color: var(--gold-400); margin-right: 6px; }
.topbar .topbar-wa {
  color: #4ad06c;
  font-weight: 600;
}
.topbar .topbar-wa i { color: #4ad06c; }
.topbar .topbar-wa:hover { color: #6fe08c; }

/* ---------- Header / nav ---------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 14px 0;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 34px rgba(6, 28, 69, 0.1); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: 24px;
}
.brand-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--navy-800);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-family: var(--font-sans);
  font-size: 0.6563rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 3px;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 10px 0 !important;
  margin: 0 13px;
  position: relative;
  white-space: nowrap;
}
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before { width: 100%; }
.navbar-nav .nav-link.dropdown-toggle::after {
  vertical-align: 2px;
  color: var(--gold-500);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold-600); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  white-space: nowrap;
}
.header-phone i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.header-phone span { display: flex; flex-direction: column; }
.header-phone small {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header-phone:hover { color: var(--gold-600); }

/* ---------- Mega menu ---------- */

.mega-dropdown { position: static; }

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  border: none;
  border-top: 3px solid var(--gold-500);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px 0 26px;
  margin-top: 0;
}

.mega-heading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mega-heading i { color: var(--gold-500); margin-right: 9px; }

.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.mega-col ul li { margin-bottom: 2px; }
.mega-col ul a {
  display: block;
  color: var(--text);
  font-size: 0.9063rem;
  padding: 6px 10px;
  border-radius: 8px;
}
.mega-col ul a:hover {
  color: var(--gold-600);
  background: var(--ivory);
  padding-left: 16px;
}

.mega-viewall {
  font-size: 0.8438rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.mega-viewall:hover { color: var(--navy-800); }
.mega-viewall i { transition: transform 0.25s ease; }
.mega-viewall:hover i { transform: translateX(4px); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(199, 150, 59, 0.16) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/scales.svg');
  background-repeat: no-repeat;
  background-position: right -60px center;
  background-size: 560px;
  opacity: 0.07;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero .container { z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  background: rgba(217, 171, 87, 0.1);
  border: 1px solid rgba(217, 171, 87, 0.3);
  font-size: 0.7813rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 40px;
  margin-bottom: 26px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.3rem, 4.3vw, 3.45rem);
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-title span {
  color: var(--gold-400);
  font-style: italic;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin: 0;
}
.hero-points li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9063rem;
  font-weight: 500;
}
.hero-points i { color: var(--gold-400); margin-right: 8px; }

/* ---------- Enquiry card ---------- */

.enquiry-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 34px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold-500);
  position: relative;
  z-index: 2;
}
.enquiry-title {
  font-size: 1.625rem;
  margin-bottom: 8px;
}
.enquiry-sub {
  font-size: 0.9063rem;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-group .optional { color: var(--text); font-weight: 400; }

.form-control,
.form-select {
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fafbfd;
  font-size: 0.9063rem;
  color: var(--ink);
  padding: 12px 16px;
  box-shadow: none !important;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold-500);
  background: var(--white);
}
.form-control.is-invalid,
.form-select.is-invalid { border-color: #dc4c4c; }

.form-note {
  font-size: 0.7813rem;
  color: var(--text);
  text-align: center;
  margin: 14px 0 0;
}
.form-note i { color: var(--gold-500); margin-right: 5px; }

.form-success {
  margin-top: 16px;
  background: #eefaf1;
  border: 1px solid #bfe8cb;
  color: #17703a;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.9063rem;
  font-weight: 500;
}
.form-success i { margin-right: 8px; }

/* ---------- Trust strip ---------- */

.trust-strip {
  background: var(--white);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-item > i {
  font-size: 1.75rem;
  color: var(--gold-500);
  line-height: 1;
  margin-top: 4px;
}
.trust-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.trust-item p {
  font-size: 0.8438rem;
  margin: 0;
}

/* ---------- Sections ---------- */

.section { padding: 96px 0; }

.section-head { max-width: 720px; margin: 0 auto 56px; }

.section-eyebrow {
  display: inline-block;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  margin-bottom: 18px;
}

.section-lead { font-size: 1.0625rem; margin: 0; }

/* ---------- Category cards ---------- */

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-card:hover::before { transform: scaleX(1); }

.category-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--ivory);
  color: var(--gold-600);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.category-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.category-card > p { font-size: 0.9375rem; margin-bottom: 20px; }

.category-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.category-links li {
  border-bottom: 1px dashed var(--line);
}
.category-links li:last-child { border-bottom: none; }
.category-links a {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 10px 2px;
}
.category-links a::before {
  content: '\F285';
  font-family: 'bootstrap-icons';
  font-size: 0.75rem;
  color: var(--gold-500);
  margin-right: 10px;
  transition: transform 0.25s ease;
}
.category-links a:hover { color: var(--gold-600); }
.category-links a:hover::before { transform: translateX(4px); }

.category-more {
  font-size: 0.8438rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.category-more:hover { color: var(--gold-600); }

/* ---------- Popular documents ---------- */

.popular-section {
  background: var(--ivory);
  padding-top: 88px;
  padding-bottom: 88px;
}

.doc-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  height: 100%;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.doc-box i { font-size: 1.5rem; color: var(--gold-500); }
.doc-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
  color: var(--navy-800);
}

/* ---------- Dark about section ---------- */

.dark-section {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(199, 150, 59, 0.12) 0%, transparent 50%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
  position: relative;
  overflow: hidden;
}
.dark-section .section-eyebrow { color: var(--gold-400); }
.dark-text { color: rgba(255, 255, 255, 0.78); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9063rem;
  font-weight: 500;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.why-item:hover {
  border-color: rgba(217, 171, 87, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.why-item i { font-size: 1.5rem; color: var(--gold-400); }

/* ---------- Process ---------- */

.process-row { position: relative; }

.process-box {
  text-align: center;
  padding: 0 14px;
}
.process-number {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(199, 150, 59, 0.32);
}
.process-box h3 { font-size: 1.3125rem; margin-bottom: 10px; }
.process-box p { font-size: 0.9063rem; margin: 0; }

/* ---------- Pricing strip ---------- */

.pricing-strip {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.pricing-strip .section-title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.pricing-strip p { max-width: 640px; }
.pricing-strip strong { color: var(--navy-800); }

/* ---------- FAQ ---------- */

.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-accordion .accordion-button {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 20px 24px;
  background: var(--white);
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-600);
  background: var(--white);
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after {
  filter: hue-rotate(190deg) saturate(2);
}
.faq-accordion .accordion-body {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
}

/* ---------- CTA ---------- */

.cta-section { padding: 0 0 96px; }

.cta-box {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(199, 150, 59, 0.22) 0%, transparent 55%),
    linear-gradient(120deg, var(--navy-950), var(--navy-700));
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/scales.svg');
  background-repeat: no-repeat;
  background-position: right -40px bottom -80px;
  background-size: 320px;
  opacity: 0.08;
}
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-box p { color: rgba(255, 255, 255, 0.78); font-size: 1.0625rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 84px;
  font-size: 0.9063rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-brand span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.footer-brand small {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 3px;
}

.footer-about { max-width: 340px; }

.site-footer h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255, 255, 255, 0.72); }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact i { color: var(--gold-400); margin-right: 9px; }

.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
  background: var(--gold-500);
  transform: translateY(-3px);
  color: var(--navy-950);
}

.footer-disclaimer {
  margin-top: 56px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.7813rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 26px;
  padding: 24px 0;
  font-size: 0.8438rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  margin-left: 22px;
}
.footer-bottom a:first-child { margin-left: 0; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Floating buttons ---------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 1040;
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 94px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--navy-800);
  color: var(--white);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1040;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-600); }

/* ---------- Disclaimer modal ---------- */

.disclaimer-modal {
  border: none;
  border-radius: 22px;
  border-top: 4px solid var(--gold-500);
}
.disclaimer-modal .modal-body {
  padding: 40px 38px 34px;
  text-align: center;
}
.disclaimer-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.disclaimer-modal h2 { font-size: 1.75rem; margin-bottom: 16px; }
.disclaimer-modal p {
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.75;
}
.disclaimer-modal a { color: var(--gold-600); font-weight: 600; }

/* ---------- Inner page hero ---------- */

.page-hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(3, 11, 31, 0.95) 0%, rgba(6, 28, 69, 0.88) 55%, rgba(6, 28, 69, 0.62) 100%),
    var(--navy-900);
  background-size: cover;
  background-position: center;
  padding: 78px 0 70px;
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.8438rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs a { color: var(--gold-400); }
.breadcrumbs a:hover { color: var(--gold-100); }
.breadcrumbs li + li::before {
  content: '›';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3rem);
  max-width: 860px;
  margin-bottom: 16px;
}

.page-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  max-width: 780px;
  margin: 0;
}

.page-hero .hero-points { margin-top: 26px; }

/* ---------- Service detail layout ---------- */

.service-layout { padding: 78px 0 90px; }

.content-block h2 {
  font-size: 1.75rem;
  margin: 42px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-100);
  position: relative;
}
.content-block h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 64px;
  height: 2px;
  background: var(--gold-500);
}
.content-block h2:first-child { margin-top: 0; }
.content-block p { margin-bottom: 18px; }
.content-block ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.content-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.content-block ul li::before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold-500);
}

.service-figure {
  margin: 6px 0 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-figure img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ---------- Sidebar ---------- */

.sidebar { position: sticky; top: 104px; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(6, 28, 69, 0.05);
}
.sidebar-card > h3 {
  font-size: 1.375rem;
  margin-bottom: 6px;
}
.sidebar-card .enquiry-sub { margin-bottom: 18px; }

.sidebar-card.contact-card {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  border: none;
  color: rgba(255, 255, 255, 0.8);
}
.contact-card h3 { color: var(--white); }
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.contact-card ul li { margin-bottom: 12px; }
.contact-card ul a { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.contact-card ul a:hover { color: var(--gold-400); }
.contact-card ul i {
  color: var(--gold-400);
  margin-right: 10px;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.related-list li { border-bottom: 1px dashed var(--line); }
.related-list li:last-child { border-bottom: none; }
.related-list a {
  display: flex;
  align-items: center;
  padding: 10px 2px;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
}
.related-list a::before {
  content: '\F285';
  font-family: 'bootstrap-icons';
  font-size: 0.75rem;
  color: var(--gold-500);
  margin-right: 10px;
}
.related-list a:hover { color: var(--gold-600); }

/* ---------- Service cards (index & hubs) ---------- */

.svc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.svc-card i {
  font-size: 1.625rem;
  color: var(--gold-500);
  display: block;
  margin-bottom: 14px;
}
.svc-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.svc-card:hover h3 { color: var(--gold-600); }
.svc-card p {
  font-size: 0.875rem;
  color: var(--text);
  margin: 0;
  line-height: 1.65;
}

.hub-section { padding: 72px 0 10px; }
.hub-section:last-of-type { padding-bottom: 80px; }
.hub-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 34px;
}
.hub-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin: 0; }
.hub-head p { margin: 6px 0 0; max-width: 640px; }

/* ---------- Homepage about media ---------- */

.about-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.9063rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}
.about-badge i { font-size: 1.25rem; }

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
}
.about-points li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9063rem;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-points i { color: var(--gold-400); margin-top: 3px; }

/* ---------- Responsive ---------- */

@media (min-width: 992px) {
  .mega-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
  }
  .mega-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 991.98px) {
  /* Compact brand so the toggler stays on the same row */
  .navbar-brand img { width: 40px; height: 40px; }
  .brand-text { font-size: 1.05rem; }
  .brand-text small { font-size: 0.5313rem; letter-spacing: 0.14em; }

  /* Premium navy drawer */
  .ldh-offcanvas {
    width: min(86vw, 350px);
    background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 100%);
    color: rgba(255, 255, 255, 0.85);
    border-left: 1px solid rgba(217, 171, 87, 0.25);
  }
  .ldh-offcanvas .offcanvas-header {
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--white);
  }
  .ldh-offcanvas .offcanvas-body {
    padding: 10px 22px 26px;
    display: flex;
    flex-direction: column;
  }
  .ldh-offcanvas .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    margin: 0;
    padding: 14px 2px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .ldh-offcanvas .navbar-nav .nav-link.active,
  .ldh-offcanvas .navbar-nav .nav-link:hover { color: var(--gold-400); }
  .ldh-offcanvas .navbar-nav .nav-link::before { display: none; }

  .ldh-offcanvas .mega-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 14px 6px;
    margin: 4px 0 10px;
  }
  .ldh-offcanvas .mega-menu .container { padding: 0; }
  .ldh-offcanvas .mega-heading {
    color: var(--gold-400);
    font-size: 0.9375rem;
    border-bottom-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .ldh-offcanvas .mega-col { margin-bottom: 14px; }
  .ldh-offcanvas .mega-col ul a { color: rgba(255, 255, 255, 0.75); padding: 5px 8px; }
  .ldh-offcanvas .mega-col ul a:hover { color: var(--gold-400); background: rgba(255, 255, 255, 0.06); }
  .ldh-offcanvas .mega-viewall { color: var(--gold-400); }

  .header-cta {
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px;
    padding: 18px 0 8px;
  }
  .header-cta .btn-gold { justify-content: center; }
  .ldh-offcanvas .header-phone { color: var(--white); }
  .ldh-offcanvas .header-phone small { color: rgba(255, 255, 255, 0.6); }
  .ldh-offcanvas .header-phone i { background: rgba(217, 171, 87, 0.15); }

  .offcanvas-contact {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9063rem;
  }
  .offcanvas-contact-title {
    font-size: 0.7188rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }
  .offcanvas-contact a, .offcanvas-contact span { color: rgba(255, 255, 255, 0.85); }
  .offcanvas-contact a:hover { color: var(--gold-400); }
  .offcanvas-contact i { color: var(--gold-400); margin-right: 8px; }

  .hero { padding: 64px 0 80px; }
  .hero::before { background-size: 420px; opacity: 0.05; }

  .section { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 34px; }
  .sidebar { position: static; margin-top: 44px; }
  .about-media img { height: 340px; }
  .service-figure img { height: 260px; }
}

@media (max-width: 575.98px) {
  .hero { padding: 48px 0 64px; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-c {
    width: 100%;
    justify-content: center;
  }
  .enquiry-card { padding: 28px 22px; }
  .section { padding: 60px 0; }
  .trust-strip { padding: 26px 0; }
  .trust-item { flex-direction: column; gap: 8px; }
  .cta-box { padding: 36px 24px; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .about-points { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 0 52px; }
}


/* ---------- Contact Form 7 ---------- */

.ldh-cf7 .wpcf7-form p { margin: 0; }
.ldh-cf7 .form-group { margin-bottom: 16px; }
.ldh-cf7 .wpcf7-form-control-wrap { display: block; }
.ldh-cf7 textarea.form-control { height: auto; }

.ldh-cf7 .wpcf7-not-valid { border-color: #dc4c4c; }
.ldh-cf7 .wpcf7-not-valid-tip {
  display: block;
  font-size: 0.7813rem;
  color: #c22f2f;
  margin-top: 6px;
}

.ldh-cf7 .wpcf7-spinner { margin: 10px auto 0; display: block; }

.ldh-cf7 .wpcf7-response-output { display: none; }
.ldh-cf7 .wpcf7-form.sent .wpcf7-response-output,
.ldh-cf7 .wpcf7-form.invalid .wpcf7-response-output,
.ldh-cf7 .wpcf7-form.failed .wpcf7-response-output,
.ldh-cf7 .wpcf7-form.spam .wpcf7-response-output,
.ldh-cf7 .wpcf7-form.unaccepted .wpcf7-response-output,
.ldh-cf7 .wpcf7-form.aborted .wpcf7-response-output { display: block; }

.ldh-cf7 .wpcf7-response-output {
  border: 1px solid #bfe8cb !important;
  background: #eefaf1;
  color: #17703a;
  border-radius: var(--radius-sm);
  padding: 13px 16px !important;
  font-size: 0.9063rem;
  font-weight: 500;
  margin: 16px 0 0 !important;
}
.ldh-cf7 .wpcf7-form.invalid .wpcf7-response-output,
.ldh-cf7 .wpcf7-form.failed .wpcf7-response-output,
.ldh-cf7 .wpcf7-form.spam .wpcf7-response-output {
  border-color: #f0c8c8 !important;
  background: #fdf2f2;
  color: #b13333;
}

/* Honeypot field must stay invisible */
.ldh-cf7 .ldh-hp-wrap { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 1px; overflow: hidden; }

/* WP alignment/caption basics for Classic Editor content */
.content-block img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.content-block .alignleft { float: left; margin: 6px 24px 12px 0; }
.content-block .alignright { float: right; margin: 6px 0 12px 24px; }
.content-block .aligncenter { display: block; margin: 12px auto; }


/* ---------- Navbar toggler & offcanvas desktop behaviour ---------- */

.navbar-toggler {
  margin-left: auto;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(199, 150, 59, 0.35); }

@media (min-width: 992px) {
  .navbar-expand-lg .offcanvas .offcanvas-body { flex-grow: 1; }
}

/* Caret rotates while the services menu is open */
.nav-link.dropdown-toggle::after { transition: transform 0.25s ease; }
.nav-link.dropdown-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }

/* ---------- Accessibility: visible focus ---------- */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Sticky mobile action bar ---------- */

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  background: var(--navy-950);
  border-top: 1px solid rgba(217, 171, 87, 0.35);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px rgba(3, 11, 31, 0.35);
}
.mobile-action-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px 8px;
  font-size: 0.7188rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.mobile-action-bar i { font-size: 1.125rem; line-height: 1; }
.mobile-action-bar .mab-call i { color: var(--gold-400); }
.mobile-action-bar .mab-wa i { color: #25d366; }
.mobile-action-bar .mab-quote {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
}

@media (max-width: 991.98px) {
  body { padding-bottom: 58px; }
  .wa-float { display: none; }
  .back-to-top { bottom: 74px; right: 18px; }

  /* CF7 submit buttons go full-width on small screens */
  .ldh-cf7 input[type="submit"] { width: 100%; }
}


/* ---------- Premium polish (v1.2) ---------- */

/* Scroll-reveal (JS adds .reveal/.revealed; skipped for reduced motion) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Button arrow micro-interaction */
.btn-gold i, .btn-navy i, .category-more i, .mega-viewall i {
  transition: transform 0.25s ease;
}
.btn-gold:hover i, .btn-navy:hover i { transform: translateX(4px); }

/* Content links: visible, branded */
.content-block a {
  color: var(--gold-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.content-block a:hover { color: var(--navy-800); }

/* Figure hover zoom */
.service-figure { overflow: hidden; }
.service-figure img { transition: transform 0.6s ease; }
.service-figure:hover img { transform: scale(1.03); }

/* Brand selection colour */
::selection { background: var(--gold-500); color: var(--white); }


/* ---------- Trust layer (v1.3): stats bar, testimonials, sister brand ---------- */

.stats-wrap {
  margin-top: -46px;
  position: relative;
  z-index: 10;
}
.stats-box {
  background: var(--white);
  border-radius: 22px;
  padding: 34px 38px;
  box-shadow: 0 24px 60px rgba(6, 28, 69, 0.12);
  border: 1px solid var(--line);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item h3 {
  font-size: 1.875rem;
  margin: 0 0 2px;
  color: var(--navy-800);
}
.stat-item p {
  margin: 0;
  font-size: 0.8438rem;
  color: var(--text);
}

.testimonials-section { background: var(--ivory); }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 28px;
  height: 100%;
  margin: 0;
  position: relative;
  box-shadow: 0 10px 34px rgba(6, 28, 69, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.t-quote {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-100);
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 22px;
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.t-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card figcaption strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.2;
}
.testimonial-card figcaption small {
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-trust {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 0.7813rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}
.sidebar-trust i { color: var(--gold-500); margin-right: 5px; }

.footer-sister {
  font-size: 0.8438rem;
  margin-top: 6px;
}
.footer-sister i { color: var(--gold-400); margin-right: 6px; }
.footer-sister a { color: var(--gold-400); font-weight: 600; }
.footer-sister a:hover { color: var(--gold-100); }

@media (max-width: 991.98px) {
  .stats-wrap { margin-top: -30px; }
  .stats-box { padding: 24px 22px; }
  .stat-item h3 { font-size: 1.5rem; }
  .stat-icon { width: 46px; height: 46px; min-width: 46px; font-size: 1.125rem; border-radius: 12px; }
}


/* ---------- Blog (v1.4) ---------- */

.featured-post {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 44px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-post:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-post-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.featured-post-body {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 0.7188rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
}
.featured-post-body h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin: 0; }
.featured-post-body p { color: var(--text); margin: 0; }

.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.post-card-media { position: relative; display: block; overflow: hidden; }
.post-card-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-cat {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(3, 11, 31, 0.85);
  color: var(--gold-400);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
}
.post-card-body { padding: 24px 24px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.7813rem;
  color: var(--text);
  margin-bottom: 10px;
}
.post-card-meta i { color: var(--gold-500); margin-right: 5px; }
.post-card-title { font-size: 1.25rem; line-height: 1.3; margin-bottom: 10px; }
.post-card-title a { color: var(--ink); }
.post-card-title a:hover { color: var(--gold-600); }
.post-card-excerpt { font-size: 0.875rem; margin-bottom: 16px; }
.post-card-more {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.post-card-more:hover { color: var(--gold-600); }

.post-hero-cat {
  display: inline-block;
  background: rgba(217, 171, 87, 0.12);
  border: 1px solid rgba(217, 171, 87, 0.35);
  color: var(--gold-400);
  font-size: 0.7188rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.post-hero-cat:hover { color: var(--gold-100); }
.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  margin-top: 18px;
}
.post-hero-meta i { color: var(--gold-400); margin-right: 7px; }

.post-figure img { height: auto; max-height: 420px; }

.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  padding: 18px 22px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.post-share-label {
  font-size: 0.8438rem;
  font-weight: 700;
  color: var(--ink);
  margin-right: 8px;
}
.post-share-label i { color: var(--gold-500); margin-right: 6px; }
.post-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.post-share a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--white); transform: translateY(-2px); }

.ldh-pagination { margin-top: 44px; }
.ldh-pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ldh-pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9063rem;
}
.ldh-pagination .page-numbers.current,
.ldh-pagination .page-numbers:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}

@media (max-width: 991.98px) {
  .featured-post-body { padding: 28px 24px; }
}
