/* ==========================================================================
   Naro Facility Management — global stylesheet
   Desktop reference width: 1440px, content container 1200px.
   Logical properties are used throughout so the Arabic (RTL) toggle works.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --navy: #0B2545;
  --blue: #0B57C4;
  --gold: #F0A500;

  --text: #3A4A5F;
  --muted: #6B7C93;

  --line: #E3E8EF;
  --line-soft: #EDF1F6;
  --field-line: #D5DEE9;

  --surface: #F5F7FA;
  --tint: #EAF1FC;
  --media: #E8EDF4;
  --error: #C0392B;

  --serif: 'Roboto Slab', Georgia, serif;
  --sans: Barlow, Arial, Helvetica, sans-serif;

  --container: 1200px;
  --gutter: 28px;
  --radius: 3px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy);
}

p { margin: 0; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color .15s ease;
}

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

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

input, textarea, select, button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  inset-inline-start: 0;
  top: -60px;
  z-index: 100;
  background: var(--blue);
  color: #FFFFFF;
  padding: 12px 20px;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

/* sizes */
.btn--sm { padding: 13px 24px; font-size: 14.5px; }
.btn--md { padding: 15px 28px; font-size: 15px; }
.btn--lg { padding: 16px 30px; font-size: 15.5px; }
.btn--xl { padding: 17px 32px; font-size: 15.5px; white-space: nowrap; }
.btn--block { width: 100%; padding: 16px; font-size: 15.5px; font-weight: 700; }

/* colours */
.btn--blue { background: var(--blue); color: #FFFFFF; }
.btn--blue:hover { background: var(--gold); color: var(--navy); }

.btn--blue-navy { background: var(--blue); color: #FFFFFF; }
.btn--blue-navy:hover { background: var(--navy); color: #FFFFFF; }

.btn--gold { background: var(--gold); color: var(--navy); font-weight: 700; }
.btn--gold:hover { background: #FFFFFF; color: var(--navy); }

.btn--navy { background: var(--navy); color: #FFFFFF; }
.btn--navy:hover { background: var(--blue); color: #FFFFFF; }

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #FFFFFF;
}
.btn--ghost:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   4. Utility bar
   -------------------------------------------------------------------------- */
.utility {
  background: var(--navy);
  color: #FFFFFF;
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 42px;
  font-size: 13.5px;
}

.utility__group {
  display: flex;
  align-items: center;
  gap: 26px;
}

.utility__group--end { gap: 22px; }

.utility__meta { color: rgba(255, 255, 255, .72); }

.utility__link {
  color: #FFFFFF;
  font-weight: 500;
}

.utility__link:hover { color: var(--gold); }

.lang-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  color: #FFFFFF;
  cursor: pointer;
  padding: 3px 11px;
  font-size: 12.5px;
  font-weight: 600;
  transition: color .15s ease, border-color .15s ease;
}

.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(11, 37, 69, .05);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand:hover { color: inherit; }

.brand__logo {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand__logo--footer {
  height: 50px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 4px;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.brand__text { text-align: start; }

.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
}

.brand__tag {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 2px;
  margin-inline-start: auto;
}

.nav__link {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* Quote CTA shown inside the mobile menu panel only. */
.nav__cta { display: none; }

.nav-toggle {
  display: none;
  margin-inline-start: auto;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: relative;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 4px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Media placeholders
   Drop a real photo in by adding <img> inside the .media element.
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--media);
  overflow: hidden;
}

.media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media--tall { height: 440px; }
.media--about { height: 420px; }
.media--map { height: 300px; margin-top: 30px; }

.media[data-placeholder]:not(:has(img))::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  background-image: linear-gradient(135deg, rgba(11, 87, 196, .05) 25%, transparent 25%,
                    transparent 50%, rgba(11, 87, 196, .05) 50%, rgba(11, 87, 196, .05) 75%,
                    transparent 75%);
  background-size: 16px 16px;
}

/* --------------------------------------------------------------------------
   7. Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  opacity: .38;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--navy) 12%, rgba(11, 37, 69, .82) 55%, rgba(11, 37, 69, .45) 100%);
}

[dir="rtl"] .hero__scrim {
  background: linear-gradient(270deg, var(--navy) 12%, rgba(11, 37, 69, .82) 55%, rgba(11, 37, 69, .45) 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
  padding-top: 88px;
  padding-bottom: 120px;
}

.hero__badge {
  display: inline-block;
  background: var(--blue);
  color: #FFFFFF;
  padding: 7px 14px;
  border-radius: 2px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__title {
  margin-top: 22px;
  max-width: 780px;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.15;
  font-weight: 700;
  color: #FFFFFF;
}

.hero__lede {
  margin-top: 20px;
  max-width: 660px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* --------------------------------------------------------------------------
   8. Page header band (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--navy);
  color: #FFFFFF;
}

.page-head__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

.breadcrumb {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
}

.breadcrumb a { color: rgba(255, 255, 255, .6); }
.breadcrumb a:hover { color: var(--gold); }

.page-head__title {
  margin-top: 12px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  color: #FFFFFF;
}

.page-head__lede {
  margin-top: 14px;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
}

/* --------------------------------------------------------------------------
   9. Section furniture
   -------------------------------------------------------------------------- */
.section--white { background: #FFFFFF; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); color: #FFFFFF; }
.section--rule-bottom { border-bottom: 1px solid var(--line); }
.section--rule-top { border-top: 1px solid var(--line); }

.section__inner {
  padding-top: 88px;
  padding-bottom: 88px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow--gold { color: var(--gold); }

.rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head--narrow { max-width: 700px; margin-bottom: 44px; }
.section-head--tight { max-width: 640px; margin-bottom: 44px; }

.section-head .rule { margin-inline: auto; }

.section-head__title {
  margin-top: 14px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.25;
  font-weight: 700;
}

.section-head__lede {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.75;
}

.prose {
  font-size: 16.5px;
  line-height: 1.75;
}

.prose + .prose { margin-top: 14px; }

/* First paragraph after a gold rule. */
.prose--lead { margin-top: 20px; }

/* --------------------------------------------------------------------------
   10. Stats strip (home) + stats band (about)
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FFFFFF;
  border: 1px solid var(--line);
  margin-top: -56px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(11, 37, 69, .08);
}

.stats__item {
  padding: 30px 28px;
  border-inline-end: 1px solid var(--line);
}

.stats__item:last-child { border-inline-end: none; }

.stats__value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.stats__label {
  margin-top: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}

.stats__note {
  margin-top: 2px;
  font-size: 13.5px;
  color: var(--muted);
}

.figures-band {
  padding-top: 64px;
  padding-bottom: 64px;
}

.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.figures__item {
  background: #FFFFFF;
  padding: 32px;
}

.figures__value {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.figures__label {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   11. Split (two-column) layouts
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.split--about { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.split--why { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; }
.split--quote { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; }
.split--contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 56px; align-items: start; }

.split__title {
  margin-top: 14px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.25;
  font-weight: 700;
}

.split__title--sm { font-size: clamp(25px, 2.4vw, 34px); line-height: 1.3; }

.split__body { margin-top: 18px; }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 26px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy);
}

.checklist__tick {
  color: var(--blue);
  font-weight: 700;
}

/* Home "Who We Are" band sits under the overlapping stats strip. */
.who-split {
  padding-top: 72px;
  padding-bottom: 88px;
}

.about-split {
  padding-top: 72px;
  padding-bottom: 72px;
}

.split__cta { margin-top: 30px; }

.quote-intro {
  margin-top: 20px;
  max-width: 460px;
}

/* --------------------------------------------------------------------------
   12. Service cards (home)
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(11, 37, 69, .09);
}

.numeral {
  width: 54px;
  height: 54px;
  flex: none;
  background: var(--tint);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}

.service-card__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card__body {
  font-size: 15.5px;
  line-height: 1.7;
}

.service-card__items {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--muted);
}

.feature-card {
  background: var(--navy);
  color: #FFFFFF;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
}

.feature-card__body {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
}

.feature-card .btn {
  align-self: flex-start;
  margin-top: 22px;
}

/* --------------------------------------------------------------------------
   13. Why choose us (navy)
   -------------------------------------------------------------------------- */
.section--navy .section__inner { padding-top: 80px; padding-bottom: 80px; }

.why__title {
  margin-top: 14px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.25;
  font-weight: 700;
  color: #FFFFFF;
}

.why__lede {
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
}

.why__metric {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .06);
  border-inline-start: 3px solid var(--gold);
}

.why__metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

.why__metric-value {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, .12);
}

.why__cell {
  background: var(--navy);
  padding: 26px;
}

.why__cell h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.why__cell p {
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
}

/* --------------------------------------------------------------------------
   14. Industries grid
   -------------------------------------------------------------------------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tile {
  background: #FFFFFF;
  padding: 28px 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background-color .15s ease;
}

.tile:hover { background: var(--tint); }

.tile__bar {
  width: 34px;
  height: 3px;
  background: var(--blue);
}

.tile__title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.tile__body {
  font-size: 14.5px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   15. Compliance band
   -------------------------------------------------------------------------- */
.compliance {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.compliance__intro { max-width: 300px; }

.compliance__intro h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.compliance__intro p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.compliance__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mark {
  border: 1px solid var(--line);
  padding: 18px 26px;
  text-align: center;
  min-width: 150px;
}

.mark__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.mark__note {
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   16. Testimonials
   -------------------------------------------------------------------------- */
.quote-card {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-card__stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 2px;
}

.quote-card blockquote {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.75;
}

.quote-card figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
  color: var(--muted);
}

.quote-card figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 15.5px;
}

/* --------------------------------------------------------------------------
   17. Quote form
   -------------------------------------------------------------------------- */
.quote-section { scroll-margin-top: 100px; }

.contact-rows {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-rows__row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-rows__key {
  width: 90px;
  flex: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-rows__value {
  font-size: 16px;
  line-height: 1.6;
}

.contact-rows__value--link {
  font-size: 16.5px;
  font-weight: 600;
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--field-line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-size: 15px;
  background: #FFFFFF;
  color: var(--navy);
  outline: none;
  transition: border-color .15s ease;
}

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); }

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--error); }

.field__error {
  display: none;
  font-size: 13px;
  color: var(--error);
}

.field.is-invalid .field__error { display: block; }

.field--chips { gap: 10px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: var(--radius);
  background: #FFFFFF;
  color: var(--text);
  border: 1px solid var(--field-line);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.chip[aria-pressed="true"] {
  background: var(--blue);
  color: #FFFFFF;
  border-color: var(--blue);
}

.form-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.form-success {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.form-success--sm { min-height: 380px; }

.form-success__tick {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 24px;
  border-radius: var(--radius);
}

.form-success h3 {
  font-size: 26px;
  font-weight: 700;
}

.form-success p {
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 380px;
}

.form-success .btn { margin-top: 8px; }

[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   18. Services page rows
   -------------------------------------------------------------------------- */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 72px;
  padding-bottom: 88px;
}

.service-row {
  border: 1px solid var(--line);
  padding: 36px;
  display: grid;
  grid-template-columns: 70px minmax(0, 290px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  background: #FFFFFF;
  transition: border-color .15s ease;
}

.service-row:hover { border-color: var(--blue); }

.service-row { scroll-margin-top: 100px; }

.service-row__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.service-row__body {
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 680px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   19. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--blue);
  color: #FFFFFF;
}

.cta-band__inner {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-band__title {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  color: #FFFFFF;
}

.cta-band__body {
  margin-top: 10px;
  max-width: 600px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}

/* --------------------------------------------------------------------------
   20. About page approach cards
   -------------------------------------------------------------------------- */
.approach-card {
  border: 1px solid var(--line);
  padding: 32px;
}

.approach-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.approach-card p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.7;
}

.approach-card--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.approach-card--navy h3 { color: #FFFFFF; }
.approach-card--navy p { color: rgba(255, 255, 255, .72); }

.approach-card--navy .btn {
  align-self: flex-start;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   21. Contact page cards
   -------------------------------------------------------------------------- */
.contact-cards-band {
  padding-top: 64px;
  padding-bottom: 24px;
}

.contact-form-band {
  padding-top: 48px;
  padding-bottom: 88px;
  scroll-margin-top: 100px;
}

.contact-title {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.3;
  font-weight: 700;
}

.rule--tight { margin-top: 18px; }

.contact-lede {
  margin-top: 18px;
  max-width: 440px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  background: #FFFFFF;
  padding: 32px;
}

.contact-card__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card__primary {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.contact-card__secondary {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.contact-card__secondary--muted { color: var(--text); }

.contact-card__address {
  margin-top: 12px;
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--navy);
}

.contact-card__hours {
  margin-top: 8px;
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: #FFFFFF;
}

.footer__inner {
  padding-top: 64px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
}

.footer .brand__mark {
  background: #FFFFFF;
  color: var(--navy);
}

.footer .brand__name { color: #FFFFFF; }
.footer .brand__tag { color: rgba(255, 255, 255, .55); }

.footer__blurb {
  margin-top: 18px;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__heading {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__link {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
  text-align: start;
}

.footer__link:hover { color: var(--gold); }

.footer__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer__bar-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a { color: rgba(255, 255, 255, .5); }
.footer__legal a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   23. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .split,
  .split--about,
  .split--why,
  .split--quote,
  .split--contact { gap: 44px; }

  .service-row {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 24px 28px;
  }

  .service-row__title { grid-column: 2; }
  .service-row__content { grid-column: 2; }
}

@media (max-width: 980px) {
  .header__inner { gap: 20px; }

  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(11, 37, 69, .1);
    padding: 8px 0;
    display: none;
  }

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

  .nav__cta {
    display: block;
    color: var(--blue);
  }

  .nav__link {
    padding: 14px var(--gutter);
    border-bottom: none;
    border-inline-start: 3px solid transparent;
  }

  .nav__link:hover,
  .nav__link.is-active { border-inline-start-color: var(--blue); }

  .nav-toggle { display: grid; }

  .header__cta { display: none; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(2n) { border-inline-end: none; }
  .stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

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

  .card-grid { grid-template-columns: 1fr 1fr; }
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  .split,
  .split--about,
  .split--why,
  .split--quote,
  .split--contact {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .split--media-first .split__media { order: -1; }

  .section__inner,
  .service-rows,
  .who-split,
  .about-split,
  .figures-band { padding-top: 64px; padding-bottom: 64px; }

  .hero__inner { padding-top: 64px; padding-bottom: 92px; }
  .hero { min-height: 460px; }

  .page-head__inner { padding-top: 48px; padding-bottom: 48px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  :root { --gutter: 20px; }

  .utility__inner {
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .utility__group { gap: 16px; flex-wrap: wrap; }
  .utility__meta--hours { display: none; }

  .stats {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }

  .stats__item {
    border-inline-end: none;
    border-bottom: 1px solid var(--line);
  }

  .stats__item:last-child { border-bottom: none; }

  .figures { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .service-row {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 22px;
    gap: 18px;
  }

  .service-row__title,
  .service-row__content { grid-column: 1; }

  .form-panel { padding: 26px 20px; }
  .quote-card { padding: 26px 22px; }
  .approach-card { padding: 26px 22px; }
  .contact-card { padding: 26px 22px; }

  .hero__actions .btn { flex: 1 1 100%; }

  .media--tall,
  .media--about { height: 280px; }

  .media--map { height: 240px; }

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

  .contact-rows__row { flex-direction: column; gap: 6px; }
  .contact-rows__key { width: auto; }

  .cta-band__inner { padding-top: 44px; padding-bottom: 44px; }
}

/* --------------------------------------------------------------------------
   Policy & FAQ Styling
   -------------------------------------------------------------------------- */
.policy-doc {
  max-width: 860px;
  margin-inline: auto;
}

.policy-doc h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.policy-doc h2:first-of-type {
  margin-top: 0;
}

.policy-doc h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
}

.policy-doc p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--body);
}

.policy-doc ul, .policy-doc ol {
  margin-bottom: 20px;
  padding-inline-start: 24px;
}

.policy-doc li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--body);
}

.policy-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.04);
}

/* FAQ Accordion */
.faq-section {
  max-width: 900px;
  margin-inline: auto;
}

.faq-group {
  margin-bottom: 40px;
}

.faq-group__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-group__title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--line);
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}

.faq-item.is-open {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(11, 87, 196, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: start;
  cursor: pointer;
  gap: 16px;
}

.faq-trigger:hover {
  color: var(--blue);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.is-open .faq-answer {
  max-height: 800px;
  transition: max-height 0.5s ease-in-out;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.75;
  color: var(--body-light);
  font-size: 15px;
}

[dir="rtl"] .faq-trigger {
  text-align: right;
}
