

:root {
  --paper: #F6F5EF;
  --paper-deep: #EFEBDD;
  --navy: #0E2A47;
  --navy-deep: #081A2E;
  --navy-mid: #17395C;
  --brass: #A9792C;
  --brass-light: #C79A4B;
  --green: #2E6E52;
  --ink: #1E242B;
  --muted: #5C6672;
  --line: #DCD6C3;
  --line-dark: rgba(255, 255, 255, .14);
  --white: #FFFFFF;

  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'IBM Plex Sans', -apple-system, Segoe UI, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-card: 0 1px 2px rgba(14, 42, 71, .06), 0 8px 24px -12px rgba(14, 42, 71, .18);
  --shadow-pop: 0 20px 45px -18px rgba(8, 26, 46, .35);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--navy-deep);
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  left: 0;
}

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

/* ---------- eyebrow / label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brass);
}

.eyebrow.on-dark {
  color: var(--brass-light);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}

.btn-brass {
  background: var(--brass);
  color: #fff;
}

.btn-brass:hover {
  background: #96692A;
  box-shadow: var(--shadow-pop);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
}

.btn-ink {
  background: var(--navy);
  color: #fff;
}

.btn-ink:hover {
  background: var(--navy-deep);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  color: var(--brass);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy-deep);
}

.brand-name.light {
  color: #fff;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 10px;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brass);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: .94rem;
  font-weight: 500;
  color: var(--navy-mid);
  position: relative;
  padding: 7px 7px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--brass);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--navy-deep);
  font-weight: 600;
}

.nav-cta {
  padding: 11px 20px;
  font-size: .88rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-pill {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 100px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  padding: 78px 0 90px;
}

.hero::before {
  /* ledger rule lines, faint */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to bottom, transparent, transparent 43px, rgba(255, 255, 255, .05) 44px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: .4em;
}

.hero h1 em {
  font-style: normal;
  color: var(--brass-light);
}

.hero-lead {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--brass-light);
}

.hero-stats div span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
}

.hero-visual {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(255, 255, 255, .12);
}

.hero-photo-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.seal-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 118px;
  height: 118px;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pop);
  border: 3px solid var(--brass);
}

.seal-badge svg {
  width: 100%;
  height: 100%;
}

.seal-badge text {
  font-family: var(--font-mono);
  font-size: 6.6px;
  letter-spacing: 1.5px;
  fill: var(--navy-deep);
  font-weight: 600;
}

/* =========================================================
   SECTION SCAFFOLDING
   ========================================================= */
section {
  padding: 84px 0;
}

.section-alt {
  background: var(--paper-deep);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, .72);
}

/* ---------- who-counts strip ---------- */
.trust-strip {
  background: var(--navy);
  padding: 22px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  align-items: center;
  justify-content: space-between;
}

.trust-strip span {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .7);
}

.trust-strip strong {
  color: #fff;
  font-weight: 600;
}

/* ---------- risk list ---------- */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}

.risk-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.risk-item .num {
  font-family: var(--font-mono);
  color: var(--brass);
  font-weight: 600;
  flex-shrink: 0;
}

/* ---------- cards: what-we-do / services ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(14, 42, 71, .28);
}

.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(169, 121, 44, .12);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc-card h3 {
  font-size: 1.14rem;
  margin-bottom: .4em;
}

.svc-card p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: .6em;
}

.svc-card ul {
  margin-top: 10px;
}

.svc-card ul li {
  display: flex;
  gap: 8px;
  font-size: .9rem;
  color: var(--ink);
  padding: 4px 0;
}

.svc-card ul li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.svc-card .tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  text-align: left;
}

.why-item .mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brass-light);
  margin-bottom: 10px;
  display: block;
}

/* ---------- process / steps ---------- */
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line);
}

.step {
  position: relative;
  padding-top: 66px;
}

.step .step-num {
  counter-increment: step;
  content: counter(step);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid var(--paper);
}

.step h3 {
  font-size: 1.02rem;
}

.step p {
  color: var(--muted);
  font-size: .92rem;
}

/* ---------- digital / SaralComply band ---------- */
.digital-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.digital-list li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: .98rem;
}

.digital-list li svg {
  flex-shrink: 0;
  color: var(--brass-light);
  margin-top: 3px;
}

.digital-shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-pop);
}

.digital-shot img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---------- testimonial / quote ---------- */
.quote-block {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 16px;
}

.quote-block cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--muted);
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-deep);
}

.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--brass);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-a p {
  padding-bottom: 20px;
  color: var(--muted);
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: 62px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to bottom, transparent, transparent 43px, rgba(255, 255, 255, .05) 44px);
}

.page-hero .container {
  position: relative;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--brass-light);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  max-width: 20ch;
}

.page-hero p {
  color: rgba(255, 255, 255, .75);
  max-width: 60ch;
  font-size: 1.04rem;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse>* {
  direction: ltr;
}

.split-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.split-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--line);
}

.tl-item {
  position: relative;
  padding-bottom: 34px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brass);
  border: 3px solid var(--paper);
}

.tl-item .yr {
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: .82rem;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-card .photo {
  height: 200px;
  overflow: hidden;
}

.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .info {
  padding: 16px 18px;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.team-card span {
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.value-item .svc-icon {
  margin: 0 auto 16px;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.service-block {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: start;
  padding: 64px 11px;
  border-bottom: 1px solid var(--line);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block .num {
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: .85rem;
  letter-spacing: .1em;
  margin-bottom: 10px;
  display: block;
}

.service-block img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.checklist {
  margin-top: 18px;
}

.checklist li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: .96rem;
}

.checklist li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 3px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.plan-card.featured {
  border-color: var(--brass);
  box-shadow: var(--shadow-card);
  position: relative;
}

.plan-card .ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--brass);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .68rem;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .06em;
}

.plan-card h3 {
  font-size: 1.1rem;
}

.plan-card ul {
  margin: 18px 0 24px;
}

.plan-card ul li {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--muted);
}

.plan-card ul li::before {
  content: "—";
  color: var(--brass);
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  color: var(--navy-mid);
  transition: all .15s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Gallery - All Images Same Size */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.g-item {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.g-item:hover img {
  transform: scale(1.06);
}

.g-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(8, 26, 46, .85), transparent);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .2s ease;
}

.g-item:hover .cap {
  opacity: 1;
}


.g-item.tall {
  grid-row: span 1;
}

.g-item.wide {
  grid-column: span 1;
}

/* Lightbox - unchanged */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 28, .92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 82vh;
  border-radius: 6px;
  box-shadow: var(--shadow-pop);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

.lightbox-cap {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-family: var(--font-mono);
  font-size: .85rem;
}
/* =========================================================
   BLOG PAGE
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.blog-card .thumb {
  height: 190px;
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--muted);
  font-size: .92rem;
  flex: 1;
}

.blog-card .read-more {
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}

.blog-feature img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.blog-feature .body {
  padding: 36px 40px 36px 0;
}


/* =========================================================
   BLOG DETAIL — PROFESSIONAL ARTICLE
   ========================================================= */

.blog-detail-hero {
    padding: 72px 0 76px;
    overflow: hidden;
}

.blog-detail-hero .container {
    max-width: 1180px;
}

.blog-detail-hero .breadcrumb {
    margin-bottom: 22px;
}

.blog-detail-hero .blog-meta {
    display: inline-block;
    margin-bottom: 14px;
}

.blog-detail-hero h1 {
    max-width: 900px;
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
}

.blog-detail-hero p {
    max-width: 820px;
    margin: 0;
    line-height: 1.8;
}


/* =========================================================
   ARTICLE AREA
   ========================================================= */

.blog-detail-section {
    padding: 65px 0 85px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.blog-detail-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    margin-bottom: 42px;
}

.blog-detail-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .7s ease;
}

.blog-detail-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   IMPORTANT:
   GLOBAL SECTION PADDING KO OVERRIDE KARNA
   ========================================================= */

.article-body {
    max-width: 850px;
}

.article-body .article-block {
    padding: 0 !important;
    margin: 0 0 34px !important;
    animation: articleFadeUp .65s ease both;
}

.article-body .article-block:nth-child(2) {
    animation-delay: .08s;
}

.article-body .article-block:nth-child(3) {
    animation-delay: .14s;
}

.article-body .article-block:nth-child(4) {
    animation-delay: .20s;
}

.article-body .article-block:nth-child(5) {
    animation-delay: .26s;
}

.article-body .article-block:nth-child(6) {
    animation-delay: .32s;
}

.article-body .article-block:nth-child(7) {
    animation-delay: .38s;
}

.article-body .article-block:nth-child(8) {
    animation-delay: .44s;
}

.article-body .article-block:last-child {
    margin-bottom: 0 !important;
}


/* =========================================================
   ARTICLE TYPOGRAPHY
   ========================================================= */

.article-block h2 {
    margin: 0 0 12px;
    font-size: 1.42rem;
    line-height: 1.35;
}

.article-block p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   ARTICLE INTRO / LEAD
   ========================================================= */

.article-body::before {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: var(--brass);
    margin-bottom: 30px;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.blog-sidebar {
    position: sticky;
    top: 30px;
}

.blog-sidebar-card {
    padding: 25px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.blog-sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.blog-sidebar-card:last-child {
    margin-bottom: 0;
}

.blog-sidebar-card h3 {
    margin: 7px 0 13px;
    font-size: 1.12rem;
    line-height: 1.45;
}

.blog-sidebar-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: .9rem;
}


/* =========================================================
   SIDEBAR LINKS
   ========================================================= */

.sidebar-link {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    font-size: .82rem;
    line-height: 1.45;
    transition:
        color .2s ease,
        padding-left .2s ease;
}

.sidebar-link:first-of-type {
    border-top: 1px solid var(--line);
}

.sidebar-link:hover {
    color: var(--brass);
    padding-left: 5px;
}


/* =========================================================
   BACK BUTTON
   ========================================================= */

.article-back {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes articleFadeUp {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .blog-sidebar-card {
        margin-bottom: 0;
    }

    .blog-detail-image img {
        height: 440px;
    }

}


@media (max-width: 650px) {

    .blog-detail-hero {
        padding: 50px 0 55px;
    }

    .blog-detail-hero h1 {
        font-size: 2rem;
    }

    .blog-detail-section {
        padding: 45px 0 60px;
    }

    .blog-detail-layout {
        gap: 35px;
    }

    .blog-detail-image {
        margin-bottom: 32px;
        border-radius: 14px;
    }

    .blog-detail-image img {
        height: 270px;
    }

    .article-body .article-block {
        margin-bottom: 27px !important;
    }

    .article-block h2 {
        font-size: 1.25rem;
    }

    .article-block p {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
}

.contact-card h3 {
  color: #fff;
}

.contact-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-line:last-of-type {
  border-bottom: none;
}

.contact-line .ic {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(169, 121, 44, .2);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-line strong {
  display: block;
  font-size: .92rem;
}

.contact-line span,
.contact-line a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
}

.map-frame {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
}

.map-frame iframe {
  width: 100%;
  height: 190px;
  border: 0;
  filter: grayscale(.3);
}

.enquiry-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--brass-light);
  border-color: var(--brass);
  background: #fff;
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 10px;
}

.form-success {
  display: none;
  background: rgba(46, 110, 82, .1);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-weight: 600;
  font-size: .9rem;
}

.form-success.is-visible {
  display: block;
}

/* =========================================================
   MISC / CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: .2em;
  font-size: 1.6rem;
}

.cta-band p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 0;
}

/* ---------- floating buttons ---------- */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(8, 26, 46, .45);
  color: #fff;
}

.float-call {
  background: var(--navy);
}

.float-whatsapp {
  background: #25D366;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .8);
  padding-top: 64px;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 44px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.footer-col ul li {
  padding: 6px 0;
}

.footer-col ul li a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .68);
}

.footer-col ul li a:hover {
  color: var(--brass-light);
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  max-width: 36ch;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
}

.footer-social a:hover {
  background: var(--brass);
  border-color: var(--brass);
}

address {
  font-style: normal;
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, .68);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 24px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .card-grid,
  .why-grid,
  .team-grid,
  .value-grid,
  .plan-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .process::before {
    display: none;
  }

  .digital-band,
  .split,
  .service-block,
  .contact-wrap,
  .blog-feature {
    grid-template-columns: 1fr;
  }

  .blog-feature img {
    min-height: 240px;
  }

  .blog-feature .body {
    padding: 0 34px 34px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .icon-pill {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 400;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav a {
    color: rgba(255, 255, 255, .85);
    padding: 12px 0;
    display: block;
    width: 100%;
  }

  .main-nav a.active {
    color: var(--brass-light);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    width: 100%;
    text-align: center;
  }

  .card-grid,
  .why-grid,
  .team-grid,
  .value-grid,
  .plan-grid,
  .blog-grid,
  .risk-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .g-item.wide {
    grid-column: span 2;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .cta-band {
    padding: 36px 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .seal-badge {
    width: 88px;
    height: 88px;
    right: -10px;
    bottom: -10px;
  }

  .hero-photo-frame img {
    height: 280px;
  }
}