/* ==========================================================================
   تهاني الخليج — Light Through the Screen
   Visual world: the pierced gypsum screen (mashrabiya / jali). Content
   arrives through apertures cut in the company's own hexagon lattice.
   ========================================================================== */


:root {
  /* Night — the room the work happens in. Warm, never blue-black. */
  --night:      #14100D;
  --night-2:    #1D1712;
  --night-3:    #2A2119;

  /* Gypsum — the lit plaster field. */
  --gypsum:     #F3ECE1;
  --gypsum-2:   #E7DCCA;
  --gypsum-3:   #D6C7AE;

  /* Gold is light, not decoration. Sampled from the company letterhead. */
  --gold:       #C79A54;
  --gold-lt:    #E3C288;
  --gold-dp:    #9A7237;

  --ink:        #241C15;
  --ink-soft:   #6A5A47;
  --on-night:   #EFE6D8;
  --on-night-2: #B7A78F;

  --measure: 68ch;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --rail: min(1440px, 100% - (var(--gut) * 2));

  /* One spacing rhythm. */
  --s1: .5rem;  --s2: .875rem; --s3: 1.5rem;  --s4: 2.25rem;
  --s5: 3.5rem; --s6: 5.5rem;  --s7: clamp(5rem, 11vw, 9rem);

  /* the aperture: a hexagon with the points on the horizontal axis */
  --hex-photo: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%);
  --hex-pill:  polygon(11px 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 11px 100%, 0 50%);
  --hex-true:  polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  --hair-night: #2E2620;
  --hair-gypsum: #D9CDB8;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-screen: cubic-bezier(.16, .84, .28, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--night);
  color: var(--on-night);
  font-family: 'Almarai', system-ui, sans-serif;
  font-size: clamp(1rem, .95rem + .25vw, 1.125rem);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
figure { margin: 0; } /* UA default is 1em 40px; with width:100% that 40px walks every photo off the rail */
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: 'Reem Kufi', 'Almarai', sans-serif; font-weight: 600; line-height: 1.18; margin: 0; letter-spacing: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Latin runs inside Arabic keep their own direction and face. */
:lang(en), .ltr { font-family: 'Jost', system-ui, sans-serif; }
:lang(en) h1, :lang(en) h2, :lang(en) h3, :lang(en) h4 { font-family: 'Reem Kufi', 'Jost', sans-serif; }
.num { direction: ltr; unicode-bidi: isolate; font-family: 'Jost', system-ui, sans-serif; font-variant-numeric: tabular-nums; }

.wrap { width: var(--rail); margin-inline: auto; }
.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  padding: 0; border: 0; margin: -1px;
  clip-path: inset(50%); white-space: nowrap;
}
/* A real skip link: off-screen until focused, never a 1px button with padding. */
.skip {
  position: fixed; z-index: 90; inset-block-start: 0; inset-inline-start: 50%;
  transform: translate(-50%, -160%); transition: transform .28s var(--ease);
}
.skip:focus { transform: translate(-50%, .75rem); }
:focus-visible { outline: 2px solid var(--gold-lt); outline-offset: 3px; border-radius: 2px; }

/* ==========================================================================
   THE APERTURE — the one compositional law, repeated at every scale.
   A hexagon cut in the screen that opens to show the work behind it.
   ========================================================================== */
.aperture { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.aperture.open { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .aperture { opacity: 1; transform: none; transition: none; } }


/* ==========================================================================
   HEADER
   ========================================================================== */
.top {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 60;
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s3) var(--gut);
  /* the header always owns its ground: the screen's holes let the bright ceiling through */
  background: color-mix(in oklab, var(--night) 64%, transparent);
  transition: background-color .45s var(--ease), backdrop-filter .45s var(--ease);
}
.top.stuck {
  background: color-mix(in oklab, var(--night) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-block-end: 1px solid var(--hair-night);
}
.top > * { position: relative; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-inline-end: auto; }
.brand img { width: clamp(38px, 5vw, 52px); height: auto; }
.brand b {
  font-family: 'Reem Kufi', sans-serif; font-weight: 600;
  font-size: clamp(.95rem, 1.6vw, 1.18rem); letter-spacing: .01em; color: var(--on-night);
}
.brand small { display: block; font-family: 'Jost', sans-serif; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 400; }

.nav { display: flex; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a {
  text-decoration: none; font-size: .95rem; color: var(--on-night-2);
  padding-block: .35rem; position: relative; transition: color .3s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; inset-block-end: 0; inset-inline-start: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: var(--to, right); transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--on-night); }
.nav a:hover::after { transform: scaleX(1); }
@media (max-width: 900px) { .nav { display: none; } }

.lang {
  font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: .14em;
  text-decoration: none; color: var(--gold-lt);
  background: color-mix(in oklab, var(--night) 55%, transparent);
  padding: .45rem .95rem; border-radius: 999px; white-space: nowrap;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.lang:hover { background: var(--gold); color: var(--night); }

/* ==========================================================================
   HERO — standing behind the screen, looking into the hall
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr); align-items: end; overflow: hidden; }
.hero-body { min-width: 0; max-width: 100%; }
.hero-img { position: absolute; inset: 0; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%;
  transform: scale(1.08); animation: drift 22s var(--ease) forwards;
}
@keyframes drift { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-img img { animation: none; transform: none; } }

/* the screen closes over the top of the frame and dissolves toward the walkway */
@property --cut { syntax: '<percentage>'; inherits: false; initial-value: 34%; }
.hero-screen {
  --cut: 34%;
  position: absolute; inset: 0; z-index: 2;
  background-image: var(--screen-url);
  background-size: 144px 83.14px;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(var(--cut) - 12%), transparent calc(var(--cut) + 22%));
          mask-image: linear-gradient(to bottom, #000 calc(var(--cut) - 12%), transparent calc(var(--cut) + 22%));
  animation: openScreen 2.2s var(--ease-screen) .1s both;
}
@keyframes openScreen { from { --cut: 112%; } to { --cut: 34%; } }
@media (prefers-reduced-motion: reduce) { .hero-screen { animation: none; } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(to top, var(--night) 1%, color-mix(in oklab, var(--night) 62%, transparent) 30%, transparent 62%);
}
.hero-body::before {
  content: ''; position: absolute; z-index: -1;
  inset-block: -8% -14%; inset-inline: -6%;
  background: radial-gradient(58% 62% at 50% 46%, color-mix(in oklab, var(--night) 66%, transparent) 0, transparent 72%);
  pointer-events: none;
}
.hero-body {
  position: relative; z-index: 4; isolation: isolate; width: var(--rail); margin-inline: auto;
  padding-block: 0 clamp(4rem, 11vh, 8rem); text-align: center;
}
.hero-mark { width: clamp(96px, 13vw, 148px); margin-inline: auto; margin-block-end: var(--s3); filter: drop-shadow(0 0 28px color-mix(in oklab, var(--gold) 55%, transparent)); }
.hero h1 {
  font-size: clamp(2.6rem, 8.2vw, 6rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -.01em;
  color: #fff; text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,.55), 0 0 60px color-mix(in oklab, var(--gold) 28%, transparent);
}
.hero .lede {
  max-width: 46ch; margin: var(--s3) auto 0; color: #E9DFCE;
  font-size: clamp(1rem, 1.05rem + .2vw, 1.2rem); text-wrap: pretty;
  text-shadow: 0 1px 18px rgba(0,0,0,.6);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; margin-block-start: var(--s4); }

.scroll-hint {
  position: absolute; inset-block-end: 1.35rem; inset-inline: 0; z-index: 5;
  display: grid; justify-items: center; gap: .5rem;
  font-family: 'Jost', sans-serif; font-size: .62rem; letter-spacing: .3em;
  color: var(--on-night-2); text-transform: uppercase;
}
.scroll-hint span { display: block; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.8rem; border-radius: 999px; text-decoration: none;
  font-family: 'Reem Kufi', sans-serif; font-size: 1rem; font-weight: 500;
  border: 0; cursor: pointer;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-gold { background: var(--gold); color: #1A1309; }
.hero-cta .btn-gold { box-shadow: 0 12px 30px -12px color-mix(in oklab, var(--gold) 70%, transparent); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost { background: color-mix(in oklab, var(--night-3) 92%, transparent); color: var(--on-night);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--on-night-2) 45%, transparent); }
.btn-ghost:hover { background: #3A2F26; box-shadow: inset 0 0 0 1px var(--on-night-2); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--gypsum); }
.btn-ink:hover { background: #38291C; transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ==========================================================================
   SECTION FURNITURE
   ========================================================================== */
section { position: relative; }
.band-night { background: var(--night); padding-block: var(--s7); }
.band-gypsum {
  background: var(--gypsum); color: var(--ink); padding-block: var(--s7);
}
.band-gypsum h2, .band-gypsum h3 { color: var(--ink); }
.band-gypsum .sec-lede { color: var(--ink-soft); }

.sec-head { max-width: 54ch; margin-block-end: var(--s5); }
.sec-head.mid { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 4.6vw, 3.3rem); text-wrap: balance; }
.sec-lede { margin-block-start: var(--s3); color: var(--on-night-2); max-width: var(--measure); text-wrap: pretty; }

/* ==========================================================================
   SERVICES — one rotating picture set per service, no copy
   ========================================================================== */
.svcs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
@media (max-width: 1100px) { .svcs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .svcs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .svcs { grid-template-columns: 1fr; } }
.svc { min-width: 0; }
.car { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--gypsum-2); touch-action: pan-y; }
.car img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s var(--ease); }
.car img.on { opacity: 1; }
.car-btn {
  position: absolute; inset-block-start: 50%; translate: 0 -50%; width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(20,16,13,.55); color: #fff; cursor: pointer; display: grid; place-items: center;
  opacity: 0; transition: opacity .3s var(--ease), background-color .3s var(--ease);
}
.car-btn svg { width: 18px; height: 18px; }
.car-prev { inset-inline-start: .6rem; } .car-next { inset-inline-end: .6rem; }
.car:hover .car-btn, .car:focus-within .car-btn { opacity: 1; }
.car-btn:hover { background: var(--gold); color: #1A1309; }
@media (hover: none) { .car-btn { opacity: 1; } }
.car-dots { position: absolute; inset-block-end: .7rem; inset-inline: 0; display: flex; justify-content: center; gap: .35rem; pointer-events: none; }
.car-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.45); }
.car-dots i.on { background: var(--gold-lt); }
.svc h3 { font-size: 1.15rem; margin-block-start: var(--s2); }
.svc .alt { display: block; font-family: 'Jost', sans-serif; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dp); margin-block-start: .2rem; }
:lang(en) .svc .alt { font-family: 'Almarai', sans-serif; letter-spacing: 0; text-transform: none; font-size: .92rem; }

/* ==========================================================================
   COMPANY — prose plus a register of facts, no cards
   ========================================================================== */
.co { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.co-text h2 { font-size: clamp(1.9rem, 4.6vw, 3.3rem); margin-block-end: var(--s3); text-wrap: balance; }
.co-text .sec-lede + .sec-lede { margin-block-start: var(--s2); }
.register { margin: 0; border-block-start: 1px solid var(--hair-night); }
.register > div { display: grid; grid-template-columns: 9rem 1fr; gap: var(--s3); padding-block: var(--s2); border-block-end: 1px solid var(--hair-night); }
.register dt { font-family: 'Reem Kufi', sans-serif; font-size: .9rem; color: var(--gold); }
.register dd { margin: 0; font-size: .96rem; color: var(--on-night); }
@media (max-width: 900px) { .co { grid-template-columns: 1fr; } .register > div { grid-template-columns: 7.5rem 1fr; } }

/* browser surfaces belong to the palette too */
::selection { background: var(--gold); color: #1A1309; }
html { scrollbar-color: var(--gold-dp) var(--night); accent-color: var(--gold); caret-color: var(--gold); }
a, .btn { text-underline-offset: .18em; }

/* a hairline that carries the lattice motif */
.rule { height: 1px; background: linear-gradient(to left, transparent, var(--gold), transparent); opacity: .45; }

/* ==========================================================================
   PROOF STRIP
   ========================================================================== */
.proof {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 0;
  padding-block: var(--s3); border-block: 1px solid var(--hair-night);
  font-family: 'Reem Kufi', sans-serif; font-size: clamp(.95rem, 1.6vw, 1.1rem); color: var(--on-night-2); text-align: center;
}
.proof span { padding-inline: 1.1rem; }
.proof span + span { border-inline-start: 1px solid var(--hair-night); }
.proof b { font-weight: 500; color: var(--on-night); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-block-end: var(--s4); }
.filters button {
  background: var(--night-3); border: 0;
  color: var(--on-night-2); padding: .6rem 1.4rem; border-radius: 999px;
  font-family: 'Reem Kufi', sans-serif; font-size: .92rem; cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.filters button:hover { color: var(--on-night); background: #3A2F26; }
.filters button[aria-pressed="true"] { background: var(--gold); color: #1A1309; }

/* Multicol in RTL shifts the column box by one gap in Chromium and widens the
   document. The mosaic has no reading order, so lay it out LTR; captions stay RTL. */
.grid { columns: 3; column-gap: var(--s3); direction: ltr; }
.grid .shot { direction: inherit; }
:lang(ar) .grid .shot figcaption { direction: rtl; }
@media (max-width: 1000px) { .grid { columns: 2; } }
@media (max-width: 560px)  { .grid { columns: auto; display: grid; grid-template-columns: 1fr; gap: var(--s3); } .shot { margin-block-end: 0; } }
.shot {
  break-inside: avoid; margin-block-end: var(--s3); position: relative;
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  overflow: hidden;
}
.shot img { width: 100%; height: auto; transition: transform .8s var(--ease), filter .6s var(--ease); filter: saturate(.94); }
.shot:hover img { transform: scale(1.045); filter: saturate(1.05); }
.shot figcaption {
  position: absolute; inset-block-end: 0; inset-inline: 0;
  padding: 2.6rem .95rem .85rem; text-align: start;
  font-family: 'Reem Kufi', sans-serif; font-size: .9rem; color: #fff;
  background: linear-gradient(to top, rgba(12,9,6,.9), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.shot:hover figcaption, .shot:focus-visible figcaption { opacity: 1; transform: none; }
.shot[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) { .shot:hover img { transform: none; } }

/* lightbox */
.box {
  position: fixed; inset: 0; z-index: 100; border: 0; padding: 0; margin: 0;
  width: 100%; height: 100%; max-width: none; max-height: none;
  background: color-mix(in oklab, var(--night) 96%, transparent);
  place-items: center;
}
.box:not([open]) { display: none; }
.box[open] { display: grid; }
.box::backdrop { background: rgba(10,8,6,.9); }
.box img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; object-fit: contain; }
.box figcaption { margin-block-start: var(--s2); text-align: center; color: var(--on-night-2); font-size: .95rem; }
.box-close {
  position: absolute; inset-block-start: 1rem; inset-inline-end: 1rem;
  width: 46px; height: 46px; cursor: pointer; border-radius: 50%;
  background: var(--night-3); border: 0; color: var(--on-night);
  display: grid; place-items: center;
}
.box-close svg { width: 20px; height: 20px; }
.box-close:hover { background: var(--gold); color: #1A1309; }
.box-nav {
  position: absolute; inset-block: 0; width: 22%; border: 0; background: none;
  cursor: pointer; color: transparent;
}
.box-prev { inset-inline-start: 0; } .box-next { inset-inline-end: 0; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--s4) var(--s3); counter-reset: st; }
.step { position: relative; padding-block-start: var(--s4); counter-increment: st; }
.step::before {
  content: counter(st); position: absolute; inset-block-start: 0; inset-inline-start: 0;
  font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 300; color: var(--gold);
  opacity: .5; line-height: 1;
}
.step::after {
  content: ''; position: absolute; inset-block-start: 1.1rem; inset-inline-start: 2.9rem;
  height: 1px; width: calc(100% - 3.4rem); background: var(--hair-gypsum);
}
.step h3 { font-size: 1.2rem; margin-block: var(--s2) .5rem; }
.step p { font-size: .93rem; color: var(--ink-soft); }
@media (max-width: 640px) { .step::after { display: none; } }

/* ==========================================================================
   ENQUIRY — assembles a WhatsApp message, no backend
   ========================================================================== */
.enq { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 900px) { .enq { grid-template-columns: 1fr; } }
.field { margin-block-end: var(--s3); }
.field label { display: block; font-family: 'Reem Kufi', sans-serif; font-size: .92rem; margin-block-end: .45rem; color: var(--on-night); }
.band-gypsum .field label { color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; font-size: .98rem;
  background: color-mix(in oklab, var(--night) 55%, transparent);
  border: 1px solid var(--hair-night);
  color: var(--on-night); border-radius: 0;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.band-gypsum .field input, .band-gypsum .field select, .band-gypsum .field textarea {
  background: #fff; color: var(--ink); border-color: var(--gypsum-3);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { resize: vertical; min-height: 96px; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span {
  display: block; padding: .5rem 1rem; border-radius: 999px; font-size: .9rem;
  border: 1px solid var(--gypsum-3); transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.chip input:checked + span { background: var(--gold); border-color: var(--gold); color: #1A1309; }
.chip input:focus-visible + span { outline: 2px solid var(--gold-dp); outline-offset: 2px; }

.enq-aside {
  padding: var(--s4); border: 1px solid var(--hair-gypsum);
  background: color-mix(in oklab, #fff 55%, transparent); position: relative; overflow: hidden;
}
.enq-aside > * { position: relative; }
.contact-list { display: grid; gap: var(--s3); margin-block-start: var(--s3); }
.contact-list a, .contact-list p { display: flex; gap: .8rem; align-items: flex-start; text-decoration: none; color: var(--ink); font-size: .96rem; line-height: 1.6; }
.contact-list svg { width: 20px; height: 20px; color: var(--gold-dp); flex: none; margin-block-start: .28rem; }
.contact-list a:hover { color: var(--gold-dp); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { background: var(--night); padding-block: var(--s6) var(--s4); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s4); }
@media (max-width: 780px) { .foot-top { grid-template-columns: 1fr; } }
.foot h4 { font-size: 1rem; color: var(--gold); margin-block-end: var(--s2); }
.foot a { color: var(--on-night-2); text-decoration: none; font-size: .94rem; }
.foot a:hover { color: var(--gold-lt); }
.foot li { margin-block-end: .5rem; }
.foot-legal {
  margin-block-start: var(--s5); padding-block-start: var(--s3);
  border-block-start: 1px solid var(--hair-night);
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); justify-content: space-between;
  font-size: .82rem; color: var(--on-night-2);
}

/* sticky WhatsApp — how this business is actually contacted */
.wa {
  position: fixed; inset-block-end: 1.1rem; inset-inline-end: 1.1rem; z-index: 70;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #1FA855; color: #fff; text-decoration: none;
  padding: .85rem 1.3rem; border-radius: 999px; font-family: 'Reem Kufi', sans-serif; font-size: .95rem;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.6);
  transform: translateY(175%); transition: transform .5s var(--ease), background-color .3s var(--ease);
  will-change: transform;
}
.wa.show { transform: none; }
.wa:hover { background: #17924a; }
.wa svg { width: 1.3em; height: 1.3em; }
@media (max-width: 480px) { .wa span { display: none; } .wa { padding: .95rem; } }


/* ---------- phones ---------- */
@media (max-width: 640px) {
  :root { --s7: clamp(3.5rem, 12vw, 5rem); --s6: 3.5rem; }
  .hero-img img { object-position: 52% 64%; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .hero .lede { font-size: 1rem; max-width: 34ch; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .proof > div { padding: var(--s3) var(--s2); }
  .sec-head { margin-block-end: var(--s4); }
  .shot figcaption { opacity: 1; transform: none; padding-block-start: 3.2rem; font-size: .82rem; }
  .foot-legal { flex-direction: column; gap: .5rem; }
  .scroll-hint { display: none; }
  .hero-mark { width: 84px; }
  .hero-body { padding-block-end: 3rem; }
}
