/* ============================================================
   ספיד הובלות — מערכת עיצוב יוקרתית (2026 Redesign)
   Mobile-First · RTL · נגיש (WCAG AA)
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Palette */
  --navy:        #0F1E3D;   /* כחול לילה */
  --navy-700:    #16294f;
  --ink:         #1A1A1A;   /* פחם */
  --gold:        #C9A24B;   /* זהב שמפניה */
  --gold-soft:   #e0c483;
  --gold-ink:    #8a6a26;   /* זהב כהה לנגישות (AA) — לטקסט זהב על רקע בהיר */
  --ivory:       #FAF8F3;   /* רקע נקי */
  --steel:       #5A6472;   /* טקסט גוף */
  --emerald:     #1F7A5C;   /* אמון / וואטסאפ */
  --emerald-600: #18684e;
  --white:       #ffffff;
  --line:        #e8e3d8;

  /* Typography */
  --font: "Assistant", "Heebo", system-ui, "Segoe UI", Arial, sans-serif;

  /* Shape & depth */
  --radius:      18px;
  --radius-sm:   12px;
  --shadow-sm:   0 4px 14px rgba(15,30,61,.08);
  --shadow-md:   0 14px 34px rgba(15,30,61,.12);
  --shadow-lg:   0 26px 60px rgba(15,30,61,.18);

  /* Layout */
  --maxw:        1180px;
  --gutter:      clamp(16px, 5vw, 40px);

  --t-fast: .18s ease;
  --t:      .32s cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* skip link */
.skip-link {
  position: absolute; right: 12px; top: -100px;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 8px; z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ---------- 3. Helpers ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 110px); }
main [id], section[id] { scroll-margin-top: 88px; }
.eyebrow {
  display: inline-block; color: var(--gold-ink);
  font-weight: 700; letter-spacing: 2px; font-size: .82rem;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  line-height: 1.18; color: var(--navy); font-weight: 800;
  letter-spacing: -.5px;
}
.section-title .accent { color: var(--gold-ink); }
/* כותרות eyebrow/accent על רקע כהה — זהב בהיר (ניגודיות תקינה על כהה) */
.hero .eyebrow, .process .eyebrow, .cta .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.cta .section-title .accent { color: var(--gold); }
.section-lead { color: var(--steel); max-width: 620px; margin-top: 16px; font-size: 1.08rem; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.btn { padding: 16px 34px; font-size: 1.04rem; }
.btn svg { width: 21px; height: 21px; flex: 0 0 auto; }
.btn:active { transform: translateY(1px) scale(.99); }
/* אייקון inline אחיד (מחליף אמוג'ים) */
.ic-inline { width: 1.2em; height: 1.2em; flex: 0 0 auto; vertical-align: -.22em; }
.btn-gold   { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy); box-shadow: 0 10px 24px rgba(201,162,75,.34); }
.btn-gold:hover   { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(201,162,75,.45); }
.btn-ghost  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost:hover  { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover   { background: var(--navy-700); transform: translateY(-2px); }

/* ---------- 4. Header ---------- */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 1000;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  padding-block: 16px;
}
.header.scrolled {
  background: rgba(15,30,61,.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding-block: 8px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 56px; height: 56px; object-fit: contain; background: var(--white); border-radius: 12px; padding: 4px; box-shadow: var(--shadow-sm); }
.brand-name { color: var(--white); font-weight: 800; font-size: 1.15rem; line-height: 1.1; }
.brand-name span { display: block; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: 3px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,.88); font-weight: 600; font-size: .98rem;
  padding: 8px 14px; border-radius: 999px; transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { margin-inline-start: 8px; }

/* טלפון בולט בכותרת (להזמנות) — תמיד גלוי, כולל בגלילה ובמובייל */
.header-phone {
  display: inline-flex; align-items: center; gap: 9px; margin-inline-start: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy);
  padding: 9px 20px; border-radius: 999px; box-shadow: 0 8px 22px rgba(201,162,75,.42);
  transition: transform var(--t-fast), box-shadow var(--t-fast); white-space: nowrap;
}
.header-phone:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(201,162,75,.58); }
.header-phone svg { width: 22px; height: 22px; flex: 0 0 auto; }
.header-phone .hp-txt { display: inline-flex; flex-direction: column; line-height: 1.12; }
.header-phone .hp-lbl { font-size: .68rem; font-weight: 700; letter-spacing: 1px; opacity: .82; }
.header-phone .hp-num { font-size: 1.22rem; font-weight: 800; direction: ltr; }
@keyframes phone-ring { 0%,92%,100% { transform: rotate(0) } 94% { transform: rotate(-12deg) } 96% { transform: rotate(12deg) } 98% { transform: rotate(-8deg) } }
.header-phone svg { animation: phone-ring 3.2s ease-in-out infinite; transform-origin: center; }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.12); position: relative;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 12px; width: 22px; height: 2.5px;
  background: var(--white); border-radius: 3px; transition: var(--t-fast);
}
.hamburger span { top: 22px; }
.hamburger span::before { top: -7px; left: 0; }
.hamburger span::after { top: 7px; left: 0; }
.hamburger[aria-expanded="true"] span { background: transparent; }
.hamburger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--white); padding-block: 120px 60px;
  background: linear-gradient(180deg, rgba(15,30,61,.78), rgba(15,30,61,.9)),
              url("../assets/px-hero.jpg") center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 80% 20%, rgba(201,162,75,.16), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; }
.hero h1 {
  font-size: clamp(2.1rem, 6.4vw, 4.1rem); line-height: 1.08; font-weight: 800;
  letter-spacing: -1px; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold); }
.hero p { font-size: clamp(1.05rem, 2.4vw, 1.35rem); color: rgba(255,255,255,.9); max-width: 600px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 46px; color: rgba(255,255,255,.8); font-size: .92rem; }
.hero-badges b { color: var(--gold); font-size: 1.4rem; display: block; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: 2px; text-align: center;
}
.scroll-cue::before { content: ""; display: block; width: 1px; height: 40px; background: rgba(255,255,255,.4); margin: 0 auto 8px; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity:.3; transform: scaleY(.6) } 50% { opacity:1; transform: scaleY(1) } }

/* ---------- 6. Trust bar ---------- */
.trust { background: var(--navy); color: var(--white); padding-block: 26px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 1.02rem; }
.trust-item .ic { color: var(--gold); display: inline-flex; }
.trust-item .ic svg { width: 25px; height: 25px; }
.trust-item .pp { background: #7c3aed; color:#fff; padding: 2px 10px; border-radius: 999px; font-size:.82rem; }

/* ---------- 7. Services ---------- */
.services-grid {
  display: grid; gap: 22px; margin-top: 50px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: right; transition: transform var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 76px; height: 76px; border-radius: 20px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold); margin-bottom: 22px; transition: var(--t);
  box-shadow: 0 10px 24px rgba(15,30,61,.18);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--navy); transform: translateY(-4px) rotate(-3deg); }
.service-icon svg { width: 38px; height: 38px; stroke-width: 1.7; }
.service-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--steel); font-size: .98rem; }
.card-more { display: inline-block; margin-top: 16px; color: var(--navy); font-weight: 700; font-size: .95rem; transition: color var(--t-fast); }
.card-more::after { content: " ›"; color: var(--gold-ink); }
.service-card:hover .card-more { color: var(--gold-ink); }

/* ---------- 8. Why us ---------- */
.why { background: var(--white); }
.why-grid { display: grid; gap: 28px; margin-top: 52px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.why-item { text-align: center; padding: 14px; }
.why-item .why-ic {
  width: 92px; height: 92px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold); border: none; box-shadow: 0 12px 28px rgba(15,30,61,.2);
  transition: var(--t);
}
.why-item:hover .why-ic { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(201,162,75,.32); }
.why-item .why-ic svg { width: 44px; height: 44px; stroke-width: 1.7; }
.why-item h3 { color: var(--navy); font-size: 1.18rem; margin-bottom: 8px; }
.why-item p { color: var(--steel); font-size: .96rem; }

/* ---------- 9. Process ---------- */
.process { background: var(--navy); color: var(--white); }
.process .section-title { color: var(--white); }
.steps { display: grid; gap: 26px; margin-top: 54px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.step .num {
  font-size: 2.6rem; font-weight: 800; color: var(--gold); opacity: .55; line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.75); font-size: .95rem; }

/* ---------- 10. Testimonials ---------- */
.testimonials { background: var(--ivory); }
.tcarousel { margin-top: 50px; position: relative; }
.ttrack { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-block: 8px 18px; scrollbar-width: none; }
.ttrack::-webkit-scrollbar { display: none; }
.tcard {
  flex: 0 0 min(420px, 86%); scroll-snap-align: center;
  background: var(--white); border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.tcard .stars { color: var(--gold-ink); letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote { color: var(--ink); font-size: 1.06rem; line-height: 1.75; }
.tcard .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.tcard .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; }
.tcard .who b { color: var(--navy); display: block; }
.tcard .who span { color: var(--steel); font-size: .88rem; }
.tnav { display: flex; gap: 12px; justify-content: center; margin-top: 22px; }
.tnav button { width: 46px; height: 46px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); color: var(--navy); font-size: 1.2rem; box-shadow: var(--shadow-sm); transition: var(--t-fast); }
.tnav button:hover { background: var(--navy); color: var(--gold); }

/* ---------- 11. Areas ---------- */
.areas { background: var(--white); }
.areas-wrap { display: grid; gap: 40px; margin-top: 46px; grid-template-columns: 1.1fr 1fr; align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.area-tags li { background: var(--ivory); border: 1px solid var(--line); color: var(--navy); font-weight: 600; padding: 9px 18px; border-radius: 999px; }
.areas-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.areas-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 12. CTA / Form ---------- */
.cta {
  position: relative; color: var(--white);
  background: linear-gradient(180deg, rgba(15,30,61,.92), rgba(15,30,61,.96)),
              url("../assets/px-couple.jpg") center/cover no-repeat;
}
.cta-grid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center; }
.cta .section-title { color: var(--white); }
.cta-perks { margin-top: 24px; display: grid; gap: 12px; }
.cta-perks li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.88); }
.cta-perks .ic { color: var(--gold); font-weight: 800; }
.discount { display: inline-block; margin-top: 22px; background: var(--gold); color: var(--navy); font-weight: 800; padding: 8px 18px; border-radius: 999px; }

.form-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); color: var(--ink); }
.form-card h3 { color: var(--navy); margin-bottom: 4px; font-size: 1.4rem; }
.form-card .sub { color: var(--steel); font-size: .95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: var(--ivory); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,.16); outline: none; background: var(--white); }
.form-card .btn-gold { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .82rem; color: var(--steel); margin-top: 12px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--emerald); color: #fff; display: grid; place-items: center; font-size: 2rem; }

/* ---------- 13. Footer ---------- */
.footer { background: #0a1530; color: rgba(255,255,255,.75); padding-block: 56px 0; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.4fr 1fr 1fr; }
.footer .brand-name { color: var(--white); }
.footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 16px; }
.footer a:hover { color: var(--gold); }
.footer-links li { margin-bottom: 10px; }
.footer-contact li { margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .ic { color: var(--gold); display: inline-flex; }
.footer-contact .ic svg { width: 20px; height: 20px; }
.feature-list .tick svg { width: 13px; height: 13px; }
.cta-perks .ic svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; font-size: .85rem; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }
.footer-bottom a { text-decoration: underline; }

/* ---------- 14. Floating actions (mobile) ---------- */
.floats { position: fixed; inset-block-end: 18px; inset-inline-start: 18px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; transition: transform var(--t-fast); }
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 28px; height: 28px; }
.float-wa { background: var(--emerald); }
.float-call { background: var(--gold); color: var(--navy); }
.float-btn .lbl { position: absolute; }
body.cookie-open .floats { inset-block-end: 96px; transition: inset-block-end .45s ease; }

/* ---------- 14b. Consent checkbox + Cookie banner ---------- */
.field-consent { margin: 2px 0 10px; }
.consent { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: .88rem; line-height: 1.5; color: var(--ink); }
.consent input[type="checkbox"] { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--navy); cursor: pointer; }
.consent a { color: var(--emerald); text-decoration: underline; }

.cookie-banner { position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 1000; background: var(--navy); color: rgba(255,255,255,.92); padding: 16px 22px; display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; justify-content: center; box-shadow: 0 -6px 24px rgba(0,0,0,.28); transform: translateY(110%); transition: transform .45s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; max-width: 720px; font-size: .92rem; line-height: 1.55; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner .btn { white-space: nowrap; padding: 10px 28px; }
.cookie-banner .cookie-close { order: -1; background: transparent; border: 0; color: rgba(255,255,255,.7); font-size: 1.7rem; line-height: 1; cursor: pointer; padding: 0 8px; transition: color var(--t-fast); }
.cookie-banner .cookie-close:hover { color: var(--white); }
@media (max-width: 600px) { .cookie-banner { padding: 14px 16px; } .cookie-banner p { font-size: .85rem; } }

/* ---------- 15. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-zoom { transform: scale(.92); }
.reveal-right { transform: translateX(44px); }
.reveal-left  { transform: translateX(-44px); }

/* כניסת Hero מונפשת בטעינת העמוד (דינמי) */
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero-inner > *, .page-hero .container > * { animation: heroIn .85s cubic-bezier(.22,.61,.36,1) both; }
.hero-inner > *:nth-child(1), .page-hero .container > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2), .page-hero .container > *:nth-child(2) { animation-delay: .16s; }
.hero-inner > *:nth-child(3), .page-hero .container > *:nth-child(3) { animation-delay: .27s; }
.hero-inner > *:nth-child(4), .page-hero .container > *:nth-child(4) { animation-delay: .38s; }
.hero-inner > *:nth-child(5), .page-hero .container > *:nth-child(5) { animation-delay: .49s; }

/* מספרים שנספרים כלפי מעלה — הדגשה עדינה בזמן הספירה */
.counting { color: var(--gold); }

/* ---------- 16. Legal pages ---------- */
.legal-hero { background: var(--navy); color: #fff; padding-block: 150px 60px; }
.legal-hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
.legal-hero p { color: rgba(255,255,255,.8); margin-top: 10px; }
.legal-body { padding-block: 60px 90px; }
.legal-body h2 { color: var(--navy); margin: 34px 0 12px; font-size: 1.45rem; }
.legal-body h3 { color: var(--navy); margin: 22px 0 8px; font-size: 1.12rem; }
.legal-body p, .legal-body li { color: var(--steel); margin-bottom: 10px; }
.legal-body ul { list-style: disc; padding-inline-start: 24px; }
.legal-body .box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin: 18px 0; }
.legal-body a { color: var(--emerald); text-decoration: underline; }

/* ---------- 16b. Inner pages (services / about / contact) ---------- */
.page-hero {
  position: relative; color: #fff; padding-block: 160px 70px; text-align: center;
  background: linear-gradient(180deg, rgba(15,30,61,.82), rgba(15,30,61,.92)), var(--navy);
  background-size: cover; background-position: center;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); line-height: 1.12; max-width: 800px; margin: 0 auto 16px; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 640px; margin: 0 auto 28px; font-size: 1.1rem; }
.page-hero .hero-actions { justify-content: center; }

.breadcrumb { background: var(--white); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding-block: 14px; font-size: .9rem; color: var(--steel); }
.breadcrumb a:hover { color: var(--gold-ink); }
.breadcrumb li::after { content: "‹"; margin-inline-start: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb li:last-child { color: var(--navy); font-weight: 600; }

.split { display: grid; gap: 44px; grid-template-columns: 1.1fr .9fr; align-items: center; }
.split.reverse { grid-template-columns: .9fr 1.1fr; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.prose h2 { color: var(--navy); font-size: clamp(1.5rem,3.6vw,2.1rem); margin-bottom: 14px; }
.prose h3 { color: var(--navy); font-size: 1.2rem; margin: 22px 0 8px; }
.prose p { color: var(--steel); margin-bottom: 14px; }

.feature-list { display: grid; gap: 14px; margin-top: 10px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.feature-list .tick { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--emerald); color: #fff; display: grid; place-items: center; font-size: .8rem; margin-top: 2px; }

.mini-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); margin-top: 36px; }
.mini-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.mini-card .n { color: var(--gold-ink); font-weight: 800; font-size: 1.6rem; }
.mini-card .n svg { width: 40px; height: 40px; vertical-align: middle; }
.mini-card h3 { color: var(--navy); font-size: 1.1rem; margin: 8px 0 6px; }
.mini-card p { color: var(--steel); font-size: .94rem; }

/* FAQ accordion */
.faq { max-width: 820px; margin-top: 30px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-ink); font-size: 1.4rem; transition: transform var(--t-fast); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--steel); }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem,4vw,2.4rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero-actions { justify-content: center; }

/* other services strip */
.related-services { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.related-services a { background: var(--ivory); border: 1px solid var(--line); color: var(--navy); font-weight: 600; padding: 10px 18px; border-radius: 999px; transition: var(--t-fast); }
.related-services a:hover { background: var(--navy); color: var(--gold); }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 2; }
}

/* ---------- 16c. Gallery (luxury) ---------- */
.gallery-grid {
  display: grid; gap: 18px; margin-top: 44px;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
}
.gallery-item {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--navy); aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.gallery-item a { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.gallery-item:hover img, .gallery-item a:focus-visible img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; inset-inline: 0; inset-block-end: 0; padding: 30px 18px 15px;
  color: #fff; font-weight: 600; font-size: .96rem; line-height: 1.45; pointer-events: none;
  background: linear-gradient(0deg, rgba(15,30,61,.94), rgba(15,30,61,.5) 55%, transparent);
}
.gallery-item .gtag {
  display: inline-block; font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 800; margin-bottom: 5px;
}
.gallery-item::after {
  content: "⤢"; position: absolute; inset-block-start: 12px; inset-inline-end: 12px;
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px); color: #fff;
  font-size: 1.05rem; opacity: 0; transition: var(--t-fast); pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* Gallery — category filter tabs */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 36px; }
.gallery-filters button {
  font-family: inherit; font-weight: 700; font-size: .95rem; padding: 10px 20px;
  border-radius: 999px; border: 1.5px solid var(--line); background: var(--white);
  color: var(--navy); cursor: pointer; transition: var(--t-fast);
}
.gallery-filters button:hover { border-color: var(--gold); transform: translateY(-1px); }
.gallery-filters button.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.gallery-grid { margin-top: 26px; }
.gallery-item.is-doc { background: var(--white); }
.gallery-item.is-doc img { object-fit: contain; }
.gallery-item.hide { display: none; }
.gallery-item.is-video { background: #000; }
.gallery-item.is-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Premium per-category gallery sections */
.cat-nav { position: sticky; top: 64px; z-index: 60; background: rgba(250,248,243,.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-block: 1px solid var(--line); }
.cat-nav .container { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; padding-block: 12px; }
.cat-nav a { font-weight: 700; font-size: .92rem; padding: 8px 17px; border-radius: 999px; border: 1.5px solid var(--line); color: var(--navy); background: var(--white); transition: var(--t-fast); white-space: nowrap; }
.cat-nav a:hover { border-color: var(--gold); transform: translateY(-1px); }
.cat-nav a.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.gallery-cat { padding-block: clamp(46px, 7vw, 86px); scroll-margin-top: 130px; }
.gallery-cat.alt { background: var(--white); }
.cat-head { display: flex; align-items: center; gap: 24px; margin-bottom: 38px; }
.cat-head .cat-icon { flex: 0 0 auto; width: 82px; height: 82px; border-radius: 22px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold); box-shadow: 0 14px 30px rgba(15,30,61,.22); }
.cat-head .cat-icon svg { width: 44px; height: 44px; stroke-width: 1.7; }
.cat-head .section-title { font-size: clamp(1.5rem, 3.6vw, 2.3rem); }
.cat-count { font-size: .82rem; font-weight: 800; color: var(--gold-ink); background: rgba(201,162,75,.15); padding: 4px 13px; border-radius: 999px; margin-inline-start: 10px; vertical-align: middle; white-space: nowrap; }
.cat-head .section-lead { margin-top: 8px; max-width: 760px; }
@media (max-width: 640px) { .cat-head { flex-direction: column; text-align: center; gap: 16px; } .cat-head .section-lead { margin-inline: auto; } .cat-nav { top: 60px; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(8,16,34,.93);
  display: none; align-items: center; justify-content: center; padding: 4vw;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.lightbox.open { display: flex; animation: lbfade .25s ease; }
@keyframes lbfade { from { opacity: 0 } to { opacity: 1 } }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-cap { position: absolute; inset-block-end: 16px; inset-inline: 0; text-align: center; color: rgba(255,255,255,.92); font-size: .95rem; padding: 0 24px; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff;
  display: grid; place-items: center; line-height: 1; transition: var(--t-fast);
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.3); }
.lightbox .lb-close { inset-block-start: 16px; inset-inline-end: 18px; width: 48px; height: 48px; font-size: 1.9rem; }
.lightbox .lb-nav { inset-block-start: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.7rem; }
.lightbox .lb-prev { inset-inline-end: 14px; }
.lightbox .lb-next { inset-inline-start: 14px; }
@media (max-width: 600px) { .lightbox .lb-nav { width: 44px; height: 44px; } }

/* ---------- 17. Responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed; inset-block-start: 0; inset-inline-start: 0; height: 100svh; width: min(82vw, 340px);
    background: var(--navy); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 100px 24px 40px; gap: 6px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { margin-top: 14px; }
  .hamburger { display: block; z-index: 1001; }
  .header-phone { margin-inline-start: 8px; padding: 8px 15px; }
  .header-phone .hp-num { font-size: 1.05rem; }
  .areas-wrap, .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { background-attachment: scroll; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .btn { width: 100%; justify-content: center; }
  .hero { padding-block: 92px 44px; }
  .hero h1 { letter-spacing: -.5px; }
  .hero-actions { flex-direction: column; }
  .hero-badges { gap: 14px 22px; margin-top: 28px; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: .95rem; }
  .brand-name span { letter-spacing: 2px; font-size: .64rem; }
  .header-phone { gap: 6px; padding: 7px 12px; }
  .header-phone svg { width: 18px; height: 18px; }
  .header-phone .hp-lbl { display: none; }
  .header-phone .hp-num { font-size: 1rem; }
  .service-card, .step { padding: 26px 22px; }
  .tcard { padding: 26px 22px; }
}

/* ---------- 18. Accessibility / motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
