/* ==========================================================
   ENG. JABIR — Civil & Maintenance Services
   Design tokens
   ========================================================== */
:root {
  /* Palette */
  --navy: #0e2439;
  --navy-2: #163350;
  --charcoal: #14171b;
  --paper: #f7f5f0;
  --paper-dim: #efebe1;
  --gold: #b9822c;
  --gold-light: #d59f4c;
  --steel: #5b6470;
  --line: #ddd7c8;
  --line-dark: #2a3d52;
  --white: #ffffff;
  --ink: #1a1d21;
  --ok: #2f6a45;

  /* Type */
  --font-head: "Big Shoulders Display", "Tajawal", sans-serif;
  --font-body: "IBM Plex Sans", "IBM Plex Sans Arabic", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 3px;
  --gap: clamp(1.25rem, 2.5vw, 2.5rem);
  --section-pad: clamp(3.5rem, 7vw, 6.5rem);

  --shadow: 0 10px 30px -14px rgba(14, 36, 57, 0.35);
  --shadow-sm: 0 4px 14px -8px rgba(14, 36, 57, 0.3);
}

html[dir="rtl"] {
  --font-head: "Tajawal", "IBM Plex Sans Arabic", sans-serif;
  --font-body: "IBM Plex Sans Arabic", "IBM Plex Sans", sans-serif;
}

/* ==========================================================
   Reset
   ========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.2px;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  font-weight: 800;
  letter-spacing: 0;
}
p {
  margin: 0;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) {
  .container { padding-inline: 2rem; }
}

.section {
  padding-block: var(--section-pad);
}
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark {
  background: var(--navy);
  color: var(--paper);
}
.section--paper-dim {
  background: var(--paper-dim);
}

.section-head {
  max-width: 640px;
  margin-block-end: clamp(2rem, 4vw, 3rem);
}
.section-head--center {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--navy);
}
.section--dark .section-head h2 { color: var(--white); }
.section-head p {
  margin-top: 0.85rem;
  color: var(--steel);
  font-size: 1.02rem;
}
.section--dark .section-head p { color: #c6d2dd; }

/* corner-bracket accent — the one signature device used sparingly */
.bracket {
  position: relative;
}
.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  opacity: 0.9;
}
.bracket::before {
  top: -8px;
  inset-inline-start: -8px;
  border-inline-end: none;
  border-block-end: none;
}
.bracket::after {
  bottom: -8px;
  inset-inline-end: -8px;
  border-inline-start: none;
  border-block-start: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-2); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.65rem 1.05rem; min-height: 44px; font-size: 0.88rem; }

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}
.eyebrow-line::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ==========================================================
   Top utility bar
   ========================================================== */
.topbar {
  background: var(--charcoal);
  color: #cfd6dc;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  gap: 1rem;
}
.topbar-areas { display: flex; align-items: center; gap: 0.4rem; }
.topbar-actions { display: flex; align-items: center; gap: 1.1rem; }
.topbar-actions a { display: inline-flex; align-items: center; gap: 0.4rem; color: #e7e2d6; }
.topbar-actions a:hover { color: var(--gold-light); }
@media (max-width: 640px) {
  .topbar-areas span.hide-mobile { display: none; }
}

/* ==========================================================
   Header / Nav
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  color: #a9bbcb;
  letter-spacing: 0.4px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.9rem;
}
.nav-links a {
  color: #dbe3ea;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.lang-btn {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold-light); }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  color: var(--white);
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--navy-2);
  border-top: 1px solid var(--line-dark);
}
.mobile-menu.is-open { display: block; }
.mobile-menu .container { padding-block: 1rem; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  color: var(--white);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-cta { margin-top: 0.9rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 60%, #0b1d2f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.2rem, 8vw, 6rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 159, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 159, 76, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.15fr 0.85fr; }
}
.hero-kicker {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: block;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.7rem);
  color: var(--white);
  max-width: 16ch;
}
.hero p.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: #cfd9e2;
  max-width: 46ch;
  line-height: 1.65;
}
.hero-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-trust {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: #b9c6d1;
}
.hero-trust .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(47, 106, 69, 0.35);
  flex: none;
}

.hero-panel {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 1.9rem 1.7rem;
  backdrop-filter: blur(2px);
}
.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.9rem;
  margin-bottom: 1.1rem;
}
.hero-panel-head h3 {
  color: var(--white);
  font-size: 1.15rem;
}
.hero-panel-head span {
  font-size: 0.72rem;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.5rem;
  font-weight: 600;
}
.hero-panel ul { display: grid; gap: 0.75rem; }
.hero-panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #dfe6ec;
  font-size: 0.94rem;
}
.hero-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.5rem;
  background: var(--gold);
  flex: none;
}

/* ==========================================================
   Services
   ========================================================== */
.services-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.service-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}
.service-card h3 {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 700;
}
.service-card p {
  color: var(--steel);
  font-size: 0.93rem;
  flex-grow: 1;
}
.service-card .btn { align-self: flex-start; margin-top: 0.4rem; }

/* ==========================================================
   Why us
   ========================================================== */
.whyus-grid {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  grid-template-columns: 1fr;
  border: 1px solid var(--line-dark);
}
@media (min-width: 700px) {
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .whyus-grid { grid-template-columns: repeat(3, 1fr); }
}
.whyus-item {
  background: var(--navy);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.whyus-item h3 { color: var(--white); font-size: 1.08rem; }
.whyus-item p { color: #b9c6d1; font-size: 0.92rem; }
.whyus-icon {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

/* ==========================================================
   Project types
   ========================================================== */
.ptypes-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .ptypes-grid { grid-template-columns: repeat(4, 1fr); }
}
.ptype-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.4rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  min-height: 140px;
  justify-content: center;
}
.ptype-card .ic {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.ptype-card span {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.3;
}

/* ==========================================================
   How it works
   ========================================================== */
.steps-row {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps-row { grid-template-columns: repeat(4, 1fr); }
}
.step-item {
  position: relative;
  padding-inline-start: 0;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.step-item h3 {
  margin-top: 0.6rem;
  color: var(--navy);
  font-size: 1.08rem;
}
.step-item p {
  margin-top: 0.4rem;
  color: var(--steel);
  font-size: 0.92rem;
}
.steps-row .step-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
}
@media (min-width: 800px) {
  .steps-row .step-item:not(:last-child) {
    border-bottom: none;
    border-inline-end: 1px solid var(--line);
    padding-bottom: 0;
    padding-inline-end: 1.6rem;
  }
}

/* ==========================================================
   Service area diagram
   ========================================================== */
.area-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .area-wrap { grid-template-columns: 1fr 1fr; }
}
.area-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-inline: auto;
}
.area-diagram svg { width: 100%; height: 100%; }
.area-list {
  display: grid;
  gap: 0.9rem;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 600;
  color: var(--navy);
}
.area-list li .tag {
  width: 10px;
  height: 10px;
  background: var(--gold);
  flex: none;
}
.area-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--steel);
}

/* ==========================================================
   Gallery
   ========================================================== */
.gallery-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(135deg, var(--paper-dim), var(--paper-dim) 10px, #e6e0d0 10px, #e6e0d0 20px);
  border: 1.5px dashed var(--steel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
  color: var(--steel);
}
.gallery-item .ic { width: 30px; height: 30px; color: var(--steel); }
.gallery-item strong {
  color: var(--navy);
  font-size: 0.95rem;
}
.gallery-item span {
  font-size: 0.78rem;
}
.gallery-item small {
  font-size: 0.72rem;
  text-transform: none;
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================
   About
   ========================================================== */
.about-wrap {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .about-wrap { grid-template-columns: 1.1fr 0.9fr; }
}
.about-copy p {
  color: var(--steel);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-points {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  background: var(--paper-dim);
  padding: 1.7rem;
  border: 1px solid var(--line);
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.about-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  flex: none;
}

/* ==========================================================
   Quote form
   ========================================================== */
.quote-wrap {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line-dark);
}
.quote-form {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-top: 1.6rem;
}
@media (min-width: 720px) {
  .quote-form { grid-template-columns: 1fr 1fr; }
  .quote-form .full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: #cfd9e2;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-height: 48px;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #93a4b2; }
.field select option { color: var(--ink); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.quote-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.4rem;
}
.quote-note {
  font-size: 0.82rem;
  color: #a9bbcb;
  grid-column: 1 / -1;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  text-align: start;
  padding: 1.25rem 0.2rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
}
.faq-q .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 0.2rem 1.3rem;
  color: var(--steel);
  font-size: 0.95rem;
  max-width: 65ch;
}

/* ==========================================================
   Final CTA
   ========================================================== */
.final-cta {
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
}
.final-cta h2 {
  color: var(--charcoal);
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  max-width: 22ch;
  margin-inline: auto;
}
.final-cta p {
  margin-top: 1rem;
  max-width: 50ch;
  margin-inline: auto;
  font-size: 1.02rem;
  color: #3a2c14;
}
.final-cta-actions {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.final-cta .btn-navy { background: var(--charcoal); border-color: var(--charcoal); }
.final-cta .btn-outline-navy { border-color: var(--charcoal); color: var(--charcoal); }
.final-cta .btn-outline-navy:hover { background: var(--charcoal); color: var(--white); }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  background: var(--charcoal);
  color: #b7bec5;
  padding-block: 3.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; }
}
.footer-brand .brand-text { color: var(--white); }
.footer-brand p {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  max-width: 32ch;
  color: #9aa3aa;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a, .footer-col span {
  font-size: 0.88rem;
  color: #b7bec5;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #7d858c;
}

/* ==========================================================
   Sticky mobile action bar
   ========================================================== */
.sticky-actions {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  gap: 1px;
  background: var(--line-dark);
  box-shadow: 0 -6px 18px -10px rgba(0,0,0,0.35);
}
@media (min-width: 960px) {
  .sticky-actions { display: none; }
}
.sticky-actions a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  min-height: 56px;
}
.sticky-actions .wa { background: #1f8a4c; color: var(--white); }
.sticky-actions .call { background: var(--navy); color: var(--white); }
body { padding-bottom: 60px; }
@media (min-width: 960px) { body { padding-bottom: 0; } }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.2rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Reveal-on-scroll: single, restrained entrance */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
