:root {
  --ink: #18211f;
  --muted: #635e54;
  --paper: #ffffff;
  --bg: #f7f4ed;
  --wash: #f0ebe0;
  --mist: #ece4d4;
  --line: #e7e0d1;
  --teal: #0a5c68;
  --teal-soft: #0f7180;
  --teal-deep: #07333b;
  --copper: #a87b3e;
  --copper-deep: #8a6230;
  --gold: #bd9a55;
  --gold-line: #cdb877;
  --amber: #c2a363;
  --amber-deep: #a98c45;
  --charcoal: #12181a;
  --star: #c9a24a;
  --gold-grad: linear-gradient(135deg, #cdb074, #ab8c4d);
  --teal-grad: linear-gradient(135deg, #0a5c68, #07333b);
  --shadow-sm: 0 8px 24px rgba(22, 28, 24, 0.06);
  --shadow: 0 24px 60px rgba(22, 28, 24, 0.09);
  --shadow-lg: 0 40px 90px rgba(12, 30, 30, 0.14);
  --shadow-gold: 0 16px 34px rgba(171, 140, 77, 0.3);
  --container: 1180px;
  --radius-sm: 6px;
  --radius: 9px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Tajawal", "Cairo", Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.85;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.brand strong,
.stat-card strong,
.collage-badge strong {
  font-family: "El Messiri", "Tajawal", Tahoma, "Segoe UI", Arial, sans-serif;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(10, 98, 112, 0.35);
  outline-offset: 4px;
}

/* Scroll reveal — only hides content when JS is active, so no-JS users see everything */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 640ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.34;
}

p {
  margin: 0;
}

#services,
#proof,
#process,
#reviews,
#faq,
#contact {
  scroll-margin-top: 126px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 12px max(22px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: rgba(6, 63, 75, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(17, 36, 43, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(10, 98, 112, 0.24);
}

.brand-text {
  display: grid;
  line-height: 1.3;
}

.brand strong {
  font-size: 15px;
  font-weight: 800;
}

.brand small {
  font-size: 12px;
  opacity: 0.72;
}

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

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  background: var(--mist);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
  color: #fff;
  background: var(--copper);
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(180, 107, 42, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 158px max(22px, calc((100vw - var(--container)) / 2)) 96px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  background:
    radial-gradient(135% 105% at 86% 6%, #0d5f6d 0%, #08333c 44%, #07171c 100%);
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(44% 56% at 90% 10%, rgba(205, 184, 119, 0.2), transparent 60%),
    radial-gradient(55% 60% at 6% 102%, rgba(205, 184, 119, 0.07), transparent 58%),
    linear-gradient(180deg, rgba(7, 18, 22, 0) 56%, rgba(7, 18, 22, 0.55) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero .hero-actions,
.hero .trust-badges {
  justify-content: center;
}

.hero .hero-lead {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.hero .eyebrow,
.offer-copy .eyebrow {
  color: var(--gold-line);
}

h1 {
  max-width: 840px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.24;
}

.hero-lead {
  max-width: 740px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--copper);
  box-shadow: 0 16px 34px rgba(180, 107, 42, 0.28);
}

.btn-secondary {
  color: var(--teal-deep);
  background: #fff;
}

.btn-map,
.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-outline {
  color: var(--teal-deep);
  background: #fff;
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-photo-stack {
  align-self: stretch;
  display: grid;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 16px;
  min-height: 540px;
}

.hero-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(205, 184, 119, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.snap-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(var(--container), calc(100% - 44px));
  margin: -36px auto 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.snap-strip a {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--teal-deep);
  border-inline-start: 1px solid var(--line);
  text-align: center;
  font-weight: 800;
}

.snap-strip a:first-child {
  border-inline-start: 0;
}

.snap-strip a:last-child {
  color: #fff;
  background: var(--teal);
}

.section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 116px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.section h2,
.quality-content h2,
.contact-section h2 {
  color: var(--ink);
  font-size: 42px;
  font-weight: 700;
}

.intro-copy p,
.quality-content p,
.contact-content p {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.intro-copy li {
  position: relative;
  padding: 12px 42px 12px 14px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.intro-copy li::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border-radius: 50%;
}

.section-head {
  max-width: 760px;
  margin-bottom: 50px;
}

.services-section {
  padding-top: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17, 36, 43, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 98, 112, 0.34);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--wash);
}

.service-card div {
  min-height: 184px;
  padding: 22px;
}

.service-card h3 {
  color: var(--teal-deep);
  font-size: 22px;
  font-weight: 800;
}

.service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  color: #fff;
  background: var(--charcoal);
}

.quality-image {
  min-height: 500px;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-content {
  align-self: center;
  width: min(560px, calc(100% - 44px));
  padding: 76px 0;
  margin-inline: auto;
}

.quality-content h2 {
  color: #fff;
}

.quality-content p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.quality-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

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

.work-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 63, 75, 0.72), rgba(6, 63, 75, 0.04) 62%);
}

.work-tile:hover img {
  transform: scale(1.045);
}

.work-tile span {
  position: absolute;
  z-index: 2;
  inset: auto 14px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.process-section {
  padding-top: 30px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 216px;
  padding: 24px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.process-list h3 {
  font-size: 20px;
  font-weight: 800;
}

.process-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* Stats / trust band */
.stats-section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  display: grid;
  gap: 6px;
  padding: 30px 22px;
  text-align: center;
  background: linear-gradient(180deg, var(--wash), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}

.stat-card span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.guarantee-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.guarantee-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.guarantee-row span::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

/* Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.reviews-summary strong {
  font-family: "El Messiri", "Tajawal", Tahoma, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.reviews-summary .stars {
  display: block;
  font-size: 22px;
  letter-spacing: 2px;
}

.reviews-summary small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.review-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--star);
  font-size: 18px;
  letter-spacing: 3px;
}

.review-card p {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.reviewer-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
}

.reviewer strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.reviewer small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  min-height: 50px;
  padding: 0 20px;
  color: var(--teal-deep);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  transition: background 160ms ease;
}

.reviews-cta:hover {
  background: var(--line);
}

.reviews-cta svg {
  fill: var(--star);
  stroke: none;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item[open] {
  border-color: rgba(10, 98, 112, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--teal-deep);
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.faq-icon::before {
  top: 10px;
  left: 3px;
  right: 3px;
  height: 2px;
}

.faq-icon::after {
  top: 3px;
  bottom: 3px;
  left: 10px;
  width: 2px;
}

.faq-item[open] .faq-icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Contact */
.contact-section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 96px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-content {
  padding: 40px;
}

.contact-intro {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 96px;
  padding: 12px 14px;
  line-height: 1.6;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 98, 112, 0.14);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa7ac;
}

.lead-form .contact-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.lead-form .btn {
  flex: 1 1 auto;
}

.form-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 11px 14px;
  color: #8a1f1f;
  background: #fdecec;
  border: 1px solid #f4caca;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
}

.form-error[hidden] {
  display: none;
}

.form-hint {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-map {
  display: flex;
  flex-direction: column;
  background: var(--mist);
  border-inline-start: 1px solid var(--line);
}

.map-embed {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 340px;
  border: 0;
}

.map-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  color: #fff;
  background: var(--teal-deep);
}

.map-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.map-detail svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  color: var(--gold);
}

.map-detail strong {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.map-detail span,
.map-detail a {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.map-detail a:hover {
  text-decoration: underline;
}

.map-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  margin-top: 2px;
  padding: 0 16px;
  color: var(--teal-deep);
  background: #fff;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.map-open:hover {
  background: var(--gold);
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--teal-deep);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 32px;
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 56px 0 36px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer-brand p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 17px;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  z-index: 35;
  inset: auto 18px 18px auto;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-call {
  background: var(--copper);
}

.floating-whatsapp {
  background: var(--teal);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(6, 18, 22, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(920px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: #0b161a;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
}

/* ============================================================
   PREMIUM + CONVERSION LAYER
   ============================================================ */

/* Fixed top stack: utility bar + header */
.site-top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
}

.topbar {
  color: rgba(255, 255, 255, 0.92);
  background: #06343d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 40px;
  padding: 4px max(22px, calc((100vw - var(--container)) / 2));
}

.topbar-inner svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a:hover {
  color: #fff;
}

.topbar-offer {
  margin-inline-start: auto;
  padding: 3px 12px;
  color: #2a1a05;
  background: var(--gold-grad);
  border-radius: var(--radius-pill);
  font-weight: 800;
}

/* Header is now positioned by .site-top wrapper */
.site-header {
  position: relative;
  inset: auto;
  z-index: 1;
}

/* Gold action button — primary conversion CTA */
.btn-gold {
  color: #2c1c06;
  background: var(--gold-grad);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  filter: brightness(1.04);
}

.btn-lg {
  min-height: 56px;
  padding: 0 26px;
  font-size: 16px;
}

/* Hero conversion elements */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.hero-rating .stars {
  font-size: 15px;
  letter-spacing: 1px;
}

.hero-rating b {
  font-size: 14px;
  font-weight: 800;
}

.hero-rating span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(205, 184, 119, 0.5);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
}

.hero-offer svg {
  color: var(--gold-line);
}

.hero-offer b {
  color: var(--gold-line);
  font-weight: 700;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 800;
}

.trust-badge svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 3px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.collage-badge {
  position: absolute;
  inset: auto 18px 18px auto;
  z-index: 3;
  display: grid;
  gap: 1px;
  padding: 12px 16px;
  color: #2c1c06;
  background: var(--gold-grad);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.collage-badge strong {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.collage-badge span {
  font-size: 12px;
  font-weight: 800;
}

.hero-photo-stack {
  position: relative;
}

/* Mid-page free-inspection offer band */
.offer-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--teal-grad);
}

.offer-band::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(205, 184, 119, 0.2), transparent 62%);
}

.offer-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 46px 0;
}

.offer-copy {
  max-width: 640px;
}

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

.offer-copy h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
}

.offer-copy p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Why-us feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 26px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: var(--teal-deep);
  background: var(--mist);
  border-radius: 14px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  color: var(--teal-deep);
  font-size: 18px;
  font-weight: 800;
}

.feature-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* Service card "learn more" link */
.service-card .card-body {
  display: flex;
  flex-direction: column;
  min-height: 184px;
  padding: 22px;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
}

.service-more svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.service-card:hover .service-more svg {
  transform: translateX(-4px);
}

/* Sticky mobile action bar */
.mobile-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 1px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(17, 36, 43, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-bar a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.mobile-bar svg {
  width: 20px;
  height: 20px;
}

.mb-call {
  color: var(--teal-deep);
}

.mb-wa {
  color: #0a8a4a;
}

.mb-book {
  color: #2c1c06;
  background: var(--gold-grad);
}

/* ===== Sub-page (service / about) ===== */
.page-hero {
  position: relative;
  padding: 150px max(22px, calc((100vw - var(--container)) / 2)) 60px;
  color: #fff;
  background: var(--teal-grad);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-img);
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.page-hero-inner {
  position: relative;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  font-size: 46px;
}

.page-hero p {
  max-width: 640px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-inline-start: 36px;
  color: var(--ink);
  font-weight: 700;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto 90px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  background: var(--teal-grad);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
}

.cta-band p {
  max-width: 560px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(0, 1fr);
    height: 300px;
    min-height: 0;
  }

  .intro-section,
  .quality-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .quality-content {
    width: min(var(--container), calc(100% - 44px));
  }

  .contact-map {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle {
    background: var(--wash);
    border-color: var(--line);
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .guarantee-row,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 80px;
  }

  #services,
  #proof,
  #process,
  #contact {
    scroll-margin-top: 80px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    inset: 68px 12px auto;
  }

  .hero {
    padding: 104px 14px 42px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-lead,
  .intro-copy p,
  .quality-content p,
  .contact-content p {
    font-size: 16px;
  }

  .section h2,
  .quality-content h2,
  .contact-section h2 {
    font-size: 28px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof span {
    justify-content: center;
    text-align: center;
  }

  .hero-photo-stack {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hero-photo-stack img {
    height: 220px;
  }

  .snap-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 28px);
    margin-top: -22px;
  }

  .snap-strip a {
    min-height: 58px;
    font-size: 14px;
  }

  .snap-strip a:last-child {
    grid-column: 1 / -1;
  }

  .section {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .intro-section {
    gap: 22px;
  }

  .services-section {
    padding-top: 34px;
  }

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

  .service-card img {
    height: 210px;
  }

  .service-card div {
    min-height: 0;
    padding: 20px;
  }

  .quality-image {
    min-height: 280px;
  }

  .quality-content {
    width: calc(100% - 28px);
    padding: 54px 0;
  }

  .quality-list {
    grid-template-columns: 1fr;
  }

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

  .process-section {
    padding-top: 22px;
  }

  .process-list li {
    min-height: auto;
  }

  .contact-section {
    width: calc(100% - 28px);
    padding-bottom: 72px;
  }

  .contact-content {
    padding: 26px 18px;
  }

  .lead-form,
  .guarantee-row,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .map-embed {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    width: calc(100% - 28px);
    padding: 36px 0 20px;
  }

  .footer-bottom {
    width: calc(100% - 28px);
    padding-bottom: 88px;
  }

  .floating-actions {
    inset: auto 12px 12px auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-actions a {
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-reveal [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive — premium + conversion layer */
@media (max-width: 1040px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  .page-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 680px) {
  .mobile-bar {
    display: grid;
  }

  .floating-actions {
    display: none;
  }

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

  .hero-rating {
    margin-bottom: 14px;
  }

  .trust-badges {
    gap: 10px 16px;
  }

  .collage-badge {
    inset: auto 12px 12px auto;
    padding: 10px 12px;
  }

  .collage-badge strong {
    font-size: 18px;
  }

  .offer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 0;
  }

  .offer-copy h2 {
    font-size: 26px;
  }

  .offer-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .offer-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 104px 14px 44px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .cta-band {
    width: calc(100% - 28px);
    padding: 36px 20px;
  }

  .cta-band h2 {
    font-size: 24px;
  }

  .btn-lg {
    min-height: 52px;
    font-size: 15px;
  }
}

/* ============================================================
   INTERACTION & MOTION POLISH
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 60;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(189, 154, 85, 0.5);
  transition: width 90ms linear;
}

/* Hero staggered entrance */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-content > * {
  animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.08s; }
.hero-content > *:nth-child(2) { animation-delay: 0.16s; }
.hero-content > *:nth-child(3) { animation-delay: 0.24s; }
.hero-content > *:nth-child(4) { animation-delay: 0.34s; }
.hero-content > *:nth-child(5) { animation-delay: 0.44s; }
.hero-content > *:nth-child(6) { animation-delay: 0.54s; }
.hero-content > *:nth-child(7) { animation-delay: 0.64s; }

/* Refined, consistent card hover */
.service-card,
.feature-card,
.review-card {
  transition: transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.feature-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(189, 154, 85, 0.55);
  box-shadow: 0 30px 60px rgba(22, 28, 24, 0.14);
}

/* Animated gold underline on nav links */
.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 13px 6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* Smoother buttons + tactile press */
.btn {
  transition: transform 200ms cubic-bezier(0.2, 0.7, 0.2, 1), background 200ms ease,
    border-color 200ms ease, filter 200ms ease, box-shadow 200ms ease;
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.reviews-cta,
.map-open {
  transition: transform 200ms cubic-bezier(0.2, 0.7, 0.2, 1), background 200ms ease, color 200ms ease;
}

.reviews-cta:hover,
.map-open:hover {
  transform: translateY(-2px);
}

/* Gentle reveal for FAQ answers */
@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.faq-item[open] .faq-answer {
  animation: faqIn 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Refined image zoom in gallery */
.work-tile img {
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-tile:hover img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > * {
    animation: none !important;
  }
}
