@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #14231e;
  --ink-2: #234137;
  --forest: #173b31;
  --forest-2: #285247;
  --gold: #c8a469;
  --gold-2: #e2c89d;
  --ivory: #f8f4ec;
  --paper: #fffdf9;
  --muted: #66706b;
  --line: #e7dfd1;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(20, 35, 30, .12);
  --max: 1180px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Tajawal', Arial, sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

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

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

.container {
  width: min(calc(100% - 30px), var(--max));
  margin: auto
}

.skip {
  position: absolute;
  right: -9999px
}

.skip:focus {
  right: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 14px;
  z-index: 999;
  border-radius: 10px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 244, 236, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 223, 209, .78)
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

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

.brand-mark {
  width: 39px;
  height: 39px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--forest), #0f2c24);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 7px 20px rgba(23, 59, 49, .16)
}

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

.brand-copy strong {
  font-size: 1.12rem
}

.brand-copy small {
  color: var(--muted);
  font-size: .69rem;
  margin-top: 5px
}

.navlinks {
  display: none;
  align-items: center;
  gap: 24px;
  font-weight: 600
}

.navlinks a:not(.btn):hover {
  color: var(--forest-2)
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer
}

.menu-icon {
  width: 20px;
  height: 14px;
  position: relative
}

.menu-icon:before,
.menu-icon:after,
.menu-icon span {
  content: '';
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 3px;
  transition: .22s
}

.menu-icon:before {
  top: 0
}

.menu-icon span {
  top: 6px
}

.menu-icon:after {
  top: 12px
}

.menu-btn[aria-expanded='true'] .menu-icon:before {
  transform: translateY(6px) rotate(45deg)
}

.menu-btn[aria-expanded='true'] .menu-icon span {
  opacity: 0
}

.menu-btn[aria-expanded='true'] .menu-icon:after {
  transform: translateY(-6px) rotate(-45deg)
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 16, .38);
  backdrop-filter: blur(2px);
  z-index: 89;
  opacity: 0;
  pointer-events: none;
  transition: .22s
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.mobile-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 380px);
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(15, 30, 25, .18);
  transform: translateX(105%);
  transition: .28s ease;
  padding: 20px;
  display: flex;
  flex-direction: column
}

.mobile-drawer.open {
  transform: translateX(0)
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line)
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 12px;
  font-size: 1.35rem;
  cursor: pointer
}

.drawer-links {
  display: grid;
  margin-top: 16px
}

.drawer-links a {
  font-size: 1.18rem;
  font-weight: 600;
  padding: 16px 3px;
  border-bottom: 1px solid var(--line)
}

.drawer-cta {
  margin-top: auto;
  padding-top: 22px
}

.drawer-note {
  font-size: .82rem;
  color: var(--muted);
  margin: 12px 0 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 21px;
  border-radius: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 26px rgba(23, 59, 49, .15)
}

.btn-primary:hover {
  background: #102f27;
  transform: translateY(-2px)
}

.btn-gold {
  background: var(--gold);
  color: #17251f
}

.btn-outline {
  border-color: #cfc6b7;
  background: rgba(255, 255, 255, .45)
}

.hero {
  padding: 38px 0 38px
}

.hero-copy {
  padding-top: 12px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--forest);
  background: #efe2cd;
  border: 1px solid #e4d2b4;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 17px
}

.eyebrow:before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%
}

.hero h1 {
  font-size: clamp(2.5rem, 11vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0 0 18px;
  max-width: 820px
}

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

.hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 24px
}

.actions {
  display: grid;
  gap: 10px
}

.micro {
  font-size: .82rem;
  color: var(--muted);
  margin: 10px 0 0
}

.hero-media {
  margin-top: 28px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 320px;
  background: #d6d0c2;
  box-shadow: var(--shadow)
}

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

.hero-media:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 28, 23, .04) 38%, rgba(12, 28, 23, .74) 100%)
}

.photo-note {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, .9);
  padding: 6px 9px;
  border-radius: 9px;
  font-size: .72rem;
  color: #4b544f
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  left: 20px;
  bottom: 18px;
  color: white
}

.hero-caption b {
  font-size: 1.27rem;
  display: block
}

.hero-caption span {
  font-size: .84rem;
  opacity: .84
}

.trust-strip {
  padding: 17px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .25)
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  text-align: center
}

.trust-grid b {
  display: block;
  font-size: .91rem
}

.trust-grid span {
  display: block;
  font-size: .69rem;
  color: var(--muted)
}

section {
  padding: 66px 0
}

.section-head {
  margin-bottom: 26px
}

.section-kicker {
  font-size: .78rem;
  color: #927447;
  font-weight: 800;
  letter-spacing: .02em
}

.section-head h2 {
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: -.035em;
  margin: 5px 0 9px
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 680px
}

.cards {
  display: grid;
  gap: 16px
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .22s ease
}

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

.service-media {
  height: 205px;
  position: relative;
  background: #d6d0c2;
  overflow: hidden
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease
}

.card:hover .service-media img {
  transform: scale(1.035)
}

.service-media .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(20, 35, 30, .86);
  color: #fff;
  border-radius: 10px;
  padding: 5px 9px;
  font-size: .69rem
}

.card-body {
  padding: 20px
}

.card h3 {
  font-size: 1.4rem;
  line-height: 1.35;
  margin: 0 0 7px
}

.card p {
  color: var(--muted);
  margin: 0 0 14px
}

.arrow {
  font-weight: 800;
  color: var(--forest)
}

.problem {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #102b24, #1f473c);
  color: #fff;
  border-radius: 30px;
  padding: 32px 23px;
  box-shadow: var(--shadow)
}

.problem:after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(226, 200, 157, .2);
  border-radius: 50%;
  left: -65px;
  top: -70px
}

.problem h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 13px
}

.problem p {
  color: #d9e0dc
}

.problem strong {
  color: #f0d3a2
}

.problem .btn {
  margin-top: 7px
}

.features {
  display: grid;
  gap: 5px
}

.feature {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px
}

.feature-num {
  width: 30px;
  height: 30px;
  border: 1px solid #d8c7aa;
  color: #927447;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 800
}

.feature b {
  display: block;
  font-size: 1.12rem
}

.feature p {
  margin: 3px 0 0;
  color: var(--muted)
}

.steps {
  display: grid;
  gap: 12px
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 21px;
  border-radius: 19px
}

.step span {
  font-weight: 800;
  color: #9a7743
}

.step h3 {
  margin: 7px 0 3px
}

.step p {
  margin: 0;
  color: var(--muted)
}

.about-box {
  background: #eadcc4;
  border: 1px solid #ddcaa8;
  border-radius: 30px;
  padding: 29px 23px;
  position: relative;
  overflow: hidden
}

.about-box:after {
  content: 'ص';
  position: absolute;
  left: -2px;
  bottom: -58px;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(23, 59, 49, .06);
  line-height: 1
}

.about-box blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  line-height: 1.55;
  margin: 0 0 15px;
  font-weight: 800
}

.about-box p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4a534f
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px 18px;
  margin-bottom: 10px
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-left: 26px
}

.faq summary:after {
  content: '+';
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 1.45rem;
  color: #97784b
}

.faq details[open] summary:after {
  content: '–'
}

.faq p {
  color: var(--muted);
  margin: 10px 0 0
}

.final-cta {
  background: linear-gradient(140deg, #122b24, #23483e);
  color: #fff;
  border-radius: 30px;
  padding: 34px 23px;
  text-align: center;
  box-shadow: var(--shadow)
}

.final-cta h2 {
  font-size: 2rem;
  line-height: 1.34;
  margin: 0 0 10px
}

.final-cta p {
  color: #d8dfdc;
  max-width: 620px;
  margin: 0 auto 22px
}

.final-cta .btn {
  background: var(--gold);
  color: #16231f
}

.page-hero {
  padding: 45px 0 28px
}

.page-hero h1 {
  font-size: clamp(2.25rem, 9.5vw, 4.35rem);
  line-height: 1.14;
  letter-spacing: -.04em;
  margin: 0 0 14px
}

.page-hero p {
  color: var(--muted);
  max-width: 760px
}

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

.content-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 23px
}

.content-box h2,
.content-box h3 {
  line-height: 1.35;
  margin-top: 0
}

.content-box p,
.content-box li {
  color: var(--muted)
}

.related-links {
  display: grid;
  gap: 10px
}

.related-links a {
  padding: 13px 15px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-weight: 700
}

.breadcrumb {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 14px
}

.service-hero-image {
  margin-top: 26px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 270px;
  background: #ddd
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover
}

.service-hero-image .photo-note {
  top: 12px;
  left: 12px
}

.location-note {
  background: #f0e4d1;
  border-right: 4px solid var(--gold);
  padding: 14px 16px;
  border-radius: 10px;
  color: #4f574f
}

footer {
  padding: 40px 0 100px;
  border-top: 1px solid var(--line)
}

.footer-grid {
  display: grid;
  gap: 22px
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  color: var(--muted)
}

.copyright {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 18px
}

.sticky-contact {
  position: fixed;
  z-index: 70;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: grid;
  grid-template-columns: .85fr 1.5fr;
  gap: 7px;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(15px);
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 14px 44px rgba(20, 35, 30, .18)
}

.sticky-contact a {
  min-height: 48px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800
}

.call {
  border: 1px solid var(--line)
}

.whatsapp {
  background: var(--forest);
  color: #fff
}

.source-note {
  font-size: .72rem;
  color: #7b827e;
  margin-top: 10px
}

@media(min-width:760px) {
  .nav {
    height: 78px
  }

  .navlinks {
    display: flex
  }

  .menu-btn {
    display: none
  }

  .hero {
    padding: 78px 0 56px
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 48px;
    align-items: center
  }

  .hero-media {
    margin-top: 0;
    min-height: 510px
  }

  .actions {
    display: flex
  }

  .trust-grid b {
    font-size: 1rem
  }

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

  .service-media {
    height: 235px
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 38px
  }

  .steps {
    grid-template-columns: repeat(4, 1fr)
  }

  .about-box {
    padding: 45px
  }

  .content-grid {
    grid-template-columns: 1.18fr .82fr
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr
  }

  .sticky-contact {
    display: none
  }

  footer {
    padding-bottom: 42px
  }
}

@media(min-width:1050px) {
  .cards {
    grid-template-columns: repeat(4, 1fr)
  }

  .service-media {
    height: 210px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important
  }
}

/* V3 — luxury polish + secondary Jeddah market */
body {
  background: linear-gradient(180deg, #fbf8f2 0, #f7f1e7 48%, #fbf8f2 100%)
}

.site-header {
  box-shadow: 0 1px 0 rgba(126, 104, 68, .06)
}

.card,
.content-box,
.step,
.faq details {
  box-shadow: 0 8px 30px rgba(38, 52, 45, .035)
}

.card {
  border-color: rgba(211, 198, 177, .72)
}

.service-media:after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -40px 70px rgba(17, 35, 29, .08);
  pointer-events: none
}

.btn {
  letter-spacing: -.01em
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.section-kicker:before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold)
}

.secondary-area {
  padding-top: 20px
}

.area-card {
  background: linear-gradient(135deg, #f2e7d5, #fffaf2);
  border: 1px solid #dfcfb5;
  border-radius: 26px;
  padding: 26px;
  display: grid;
  gap: 18px;
  box-shadow: 0 16px 50px rgba(44, 54, 47, .06)
}

.area-card h2 {
  font-size: 1.75rem;
  line-height: 1.35;
  margin: 0
}

.area-card p {
  color: var(--muted);
  margin: 0
}

.area-tag {
  display: inline-flex;
  width: max-content;
  background: var(--forest);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800
}

.area-link {
  font-weight: 800;
  color: var(--forest)
}

.about-profile {
  display: grid;
  gap: 20px;
  align-items: center
}

.portrait-frame {
  position: relative;
  min-height: 310px;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(145deg, #173b31, #2b584b);
  border: 1px solid rgba(214, 190, 150, .7);
  box-shadow: var(--shadow)
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  color: #f6ead6
}

.portrait-placeholder .portrait-mark {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin: auto auto 14px
}

.portrait-placeholder b {
  display: block;
  font-size: 1.15rem
}

.portrait-placeholder span {
  display: block;
  font-size: .78rem;
  opacity: .78;
  margin-top: 5px
}

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

.about-profile .about-box {
  height: 100%
}

.city-intro {
  background: linear-gradient(140deg, #122f27, #214b3f);
  color: #fff;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: var(--shadow)
}

.city-intro p {
  color: #dce4e0
}

.city-services {
  display: grid;
  gap: 12px
}

.city-service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px
}

.city-service h3 {
  margin: 0 0 6px
}

.city-service p {
  margin: 0;
  color: var(--muted)
}

.sticky-contact {
  bottom: 8px;
  padding: 6px;
  border-radius: 16px
}

.sticky-contact a {
  min-height: 46px
}

@media(min-width:760px) {
  .area-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 34px
  }

  .about-profile {
    grid-template-columns: .7fr 1.3fr
  }

  .portrait-frame {
    min-height: 390px
  }

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


/* V3.1 — mobile proportion pass */
.designer-credit {
  display: block;
  margin-top: 5px;
  color: #7b6d58
}

.designer-credit strong {
  color: var(--forest);
  font-weight: 800
}

.about-home {
  max-width: 860px;
  margin-inline: auto
}

.about-portrait-section {
  padding-top: 26px;
  padding-bottom: 18px
}

.about-profile-page .about-box {
  display: flex;
  flex-direction: column;
  justify-content: center
}

@media(max-width:759px) {
  .container {
    width: min(calc(100% - 36px), var(--max))
  }

  .nav {
    height: 68px
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 1.12rem
  }

  .brand-copy strong {
    font-size: 1.02rem
  }

  .brand-copy small {
    font-size: .63rem;
    margin-top: 4px
  }

  .menu-btn {
    width: 42px;
    height: 42px
  }

  section {
    padding: 50px 0
  }

  .hero {
    padding: 30px 0 34px
  }

  .hero-copy {
    padding-top: 4px
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
    line-height: 1.12;
    margin-bottom: 14px
  }

  .hero .lead {
    font-size: .98rem;
    line-height: 1.85;
    margin-bottom: 20px
  }

  .hero-media {
    min-height: 285px;
    margin-top: 22px;
    border-radius: 24px
  }

  .hero-caption b {
    font-size: 1.12rem
  }

  .section-head {
    margin-bottom: 22px
  }

  .section-head h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.25rem);
    line-height: 1.24
  }

  .section-head p {
    font-size: .96rem
  }

  .service-media {
    height: 185px
  }

  .card-body {
    padding: 18px
  }

  .card h3 {
    font-size: 1.28rem
  }

  .problem {
    padding: 27px 20px;
    border-radius: 24px
  }

  .problem h2 {
    font-size: 1.72rem
  }

  .feature {
    padding: 15px 0
  }

  .feature b {
    font-size: 1.04rem
  }

  .step {
    padding: 18px
  }

  .about-box {
    padding: 25px 20px;
    border-radius: 24px
  }

  .about-box blockquote {
    font-size: 1.28rem
  }

  .page-hero {
    padding: 34px 0 20px
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.55rem);
    line-height: 1.2;
    letter-spacing: -.03em;
    margin-bottom: 12px
  }

  .page-hero p {
    font-size: .98rem;
    line-height: 1.9
  }

  .breadcrumb {
    margin-bottom: 10px
  }

  .content-grid {
    gap: 14px
  }

  .content-box {
    padding: 20px;
    border-radius: 18px
  }

  .content-box h2 {
    font-size: 1.45rem
  }

  .content-box h3 {
    font-size: 1.24rem
  }

  .portrait-frame {
    min-height: 275px;
    border-radius: 22px
  }

  .about-portrait-section {
    padding-top: 14px;
    padding-bottom: 10px
  }

  .area-card {
    padding: 22px;
    border-radius: 22px
  }

  .area-card h2 {
    font-size: 1.5rem
  }

  .final-cta {
    padding: 29px 20px;
    border-radius: 24px
  }

  .final-cta h2 {
    font-size: 1.7rem
  }

  footer {
    padding-top: 34px;
    padding-bottom: 88px
  }

  .sticky-contact {
    left: 8px;
    right: 8px;
    bottom: 7px;
    gap: 6px;
    padding: 5px;
    border-radius: 15px
  }

  .sticky-contact a {
    min-height: 43px;
    font-size: .9rem
  }
}

@media(max-width:380px) {
  .container {
    width: min(calc(100% - 28px), var(--max))
  }

  .page-hero h1 {
    font-size: 1.9rem
  }

  .hero h1 {
    font-size: 2.05rem
  }

  .sticky-contact {
    grid-template-columns: .78fr 1.42fr
  }

  .sticky-contact a {
    font-size: .84rem
  }
}

/* Approved Saleh brand icon */
.brand-mark {
  overflow: hidden;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 50%
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

/* Work gallery */
.service-gallery {
  padding-top: 10px
}

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

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: #eee;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in
}

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

.gallery-item:hover img {
  transform: scale(1.025)
}

.gallery-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(20, 35, 30, .88);
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .82rem
}

.gallery-more {
  text-align: center;
  margin-top: 22px
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px
}

.gallery-filters button {
  border: 1px solid #d8cbb8;
  background: #fffdf9;
  color: #173b31;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer
}

.gallery-filters button.active {
  background: #173b31;
  color: #fff;
  border-color: #173b31
}

.gallery-item.is-hidden {
  display: none
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(9, 17, 14, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain
}

.lightbox-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  font-size: 30px;
  background: #fff;
  color: #173b31;
  cursor: pointer
}

.gallery-page {
  padding-top: 28px
}

@media(max-width:700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px
  }

  .gallery-item {
    border-radius: 13px
  }

  .gallery-label {
    font-size: .72rem;
    padding: 5px 8px;
    right: 7px;
    bottom: 7px
  }
  .gallery-filters {
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 5px;
  }

  .gallery-filters button {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}