@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/cairo-arabic.woff2") format("woff2");
}

@font-face {
  font-family: "Aref Ruqaa";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/aref-ruqaa-regular-arabic.woff2") format("woff2");
}

@font-face {
  font-family: "Aref Ruqaa";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/aref-ruqaa-bold-arabic.woff2") format("woff2");
}

:root {
  --ink: #1f1a1d;
  --muted: #6e6469;
  --paper: #fbf8f5;
  --paper-2: #f3ede9;
  --plum: #5b174d;
  --plum-dark: #38102f;
  --plum-soft: #8b4d78;
  --gold: #c09b64;
  --gold-light: #dabf96;
  --ink-soft: #51474c;
  --paper-3: #efe8e4;
  --surface-cream: #f0e7e7;
  --surface-dark: #24131f;
  --white: #fff;
  --overlay: rgba(18, 7, 15, .93);
  --caption-bg: rgba(29, 13, 24, .82);
  --text-on-dark: rgba(255, 255, 255, .68);
  --text-on-dark-strong: rgba(255, 255, 255, .72);
  --text-on-dark-muted: rgba(255, 255, 255, .58);
  --line-on-dark: rgba(255, 255, 255, .12);
  --control-on-dark: rgba(255, 255, 255, .1);
  --card-on-paper: rgba(255, 255, 255, .72);
  --glass: rgba(255, 255, 255, .55);
  --paper-glass: rgba(251, 248, 245, .88);
  --plum-tint: rgba(91, 23, 77, .08);
  --plum-tint-border: rgba(91, 23, 77, .15);
  --border: rgba(91, 23, 77, .13);
  --shadow: 0 24px 70px rgba(56, 16, 47, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.section-pad { padding: 110px 0; }
.top-anchor { position: absolute; inset: 0 auto auto 0; width: 1px; height: 1px; pointer-events: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper-glass);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--plum-tint);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 50px; height: 50px; flex: 0 0 auto; filter: drop-shadow(0 8px 16px rgba(56,16,47,.16)); }
.brand strong { display: block; color: var(--plum-dark); font-size: 18px; line-height: 1.2; }
.brand small { color: var(--muted); font-size: 11px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.nav-links a { transition: .25s ease; }
.nav-links a:hover { color: var(--plum); }
.nav-cta { background: var(--plum); color: var(--white) !important; padding: 11px 18px; border-radius: 12px; }
.menu-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 10px; place-items: center; color: var(--plum-dark); }

.hero { position: relative; overflow: hidden; padding-top: 125px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 76px; position: relative; z-index: 2; }
.hero-decor { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-decor-1 { width: 420px; height: 420px; background: rgba(192,155,100,.12); left: -160px; top: -100px; }
.hero-ornament { position: absolute; width: 540px; right: -190px; bottom: -210px; opacity: .6; transform: rotate(10deg); pointer-events: none; }
.eyebrow { color: var(--plum); font-size: 13px; font-weight: 800; letter-spacing: .06em; margin-bottom: 16px; }
.hero h1, .section-heading h2, .why-copy h2, .contact-copy h2 {
  margin: 0;
  font-family: "Aref Ruqaa", serif;
  color: var(--plum-dark);
  font-weight: 700;
  line-height: 1.35;
}
.hero h1 { font-size: clamp(44px, 6vw, 76px); }
.hero h1 span { color: var(--plum); position: relative; }
.hero-lead { color: var(--muted); font-size: 18px; max-width: 680px; margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { border: 0; border-radius: 14px; padding: 14px 24px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; transition: .25s ease; }
.btn-primary { background: var(--plum); color: var(--white); box-shadow: 0 14px 30px rgba(91,23,77,.2); }
.btn-primary:hover { background: var(--plum-dark); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--border); background: var(--glass); color: var(--plum-dark); }
.btn[disabled] { opacity: .65; cursor: not-allowed; transform: none; }
.btn-ghost:hover { background: var(--white); transform: translateY(-2px); }
.hero-points { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; font-size: 13px; color: var(--ink-soft); }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points svg { color: var(--plum); flex: 0 0 auto; }

.hero-showcase { min-height: 610px; position: relative; display: grid; place-items: center; margin: 0; }
.book-card { position: absolute; overflow: hidden; border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.front-card { width: min(440px, 86%); transform: rotate(-2deg); border: 7px solid var(--white); border-radius: 18px; box-shadow: 0 28px 55px -12px rgba(56,16,47,.3), 0 10px 22px -8px rgba(56,16,47,.16); }
.front-card picture { display: block; border-radius: 10px; overflow: hidden; }
.front-card img { aspect-ratio: 1.47 / 1; width: 100%; height: auto; object-fit: cover; object-position: center; }
.front-card::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 50%; width: 30px;
  transform: translateX(-50%);
  background: linear-gradient(to left, transparent, rgba(56,16,47,.1) 42%, rgba(30,10,25,.22) 50%, rgba(56,16,47,.1) 58%, transparent);
  pointer-events: none;
}
.back-card { width: 390px; height: 520px; left: 4%; top: 8%; transform: rotate(8deg); padding: 48px 38px; background: linear-gradient(145deg,var(--white),var(--paper-3)); border: 1px solid var(--plum-tint); }
.brand-seal {
  position: absolute; top: 34px; right: 7%; z-index: 5;
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(251,248,245,.96); padding: 7px;
  box-shadow: 0 16px 36px rgba(56,16,47,.15), 0 0 0 1px var(--plum-tint);
}
.brand-seal img { width: 100%; height: 100%; }
.mini-title { color: var(--plum); font-family: "Aref Ruqaa"; font-size: 34px; margin-bottom: 36px; }
.mini-lines { height: 7px; background: rgba(91,23,77,.17); border-radius: 99px; margin: 15px 0; }
.mini-lines.short { width: 55%; }
.mini-lines.medium { width: 75%; }
.book-shadow { position: absolute; width: 66%; height: 90px; background: rgba(56,16,47,.16); filter: blur(30px); bottom: 30px; border-radius: 50%; }
.floating-badge { position: absolute; left: 5%; bottom: 88px; background: var(--white); color: var(--plum); border: 1px solid var(--border); border-radius: 999px; padding: 11px 16px; font-size: 12px; font-weight: 800; box-shadow: 0 14px 38px rgba(56,16,47,.12); }

.trust-strip { background: var(--plum-dark); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid div { padding: 28px 24px; border-left: 1px solid var(--line-on-dark); }
.trust-grid div:last-child { border-left: 0; }
.trust-grid strong { display: block; font-family: "Aref Ruqaa"; font-size: 24px; }
.trust-grid span { color: var(--text-on-dark); font-size: 12px; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2, .why-copy h2, .contact-copy h2 { font-size: clamp(36px, 4.6vw, 58px); }
.section-heading p { color: var(--muted); margin: 16px 0 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { background: var(--card-on-paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 55px rgba(56,16,47,.09); background: var(--white); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--plum-tint); color: var(--plum); font-weight: 800; }
.service-card h3 { margin: 20px 0 8px; font-size: 20px; color: var(--plum-dark); }
.service-card p { color: var(--muted); margin: 0; font-size: 14px; }

.portfolio-section { background: var(--plum-dark); position: relative; overflow: hidden; }
.portfolio-section:before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 10%, rgba(192,155,100,.14), transparent 30%), radial-gradient(circle at 90% 90%, rgba(255,255,255,.05), transparent 30%); }
.portfolio-pattern { position: absolute; width: 480px; left: -140px; top: -130px; opacity: .2; filter: brightness(3.2); transform: rotate(18deg); pointer-events: none; }
.portfolio-section .container { position: relative; z-index: 1; }
.section-heading.light h2 { color: var(--white); }
.section-heading.light .eyebrow { color: var(--gold-light); }
.section-heading.light p { color: var(--text-on-dark); }
.portfolio-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 44px; }
.portfolio-head .section-heading { margin-bottom: 0; }
.portfolio-controls { display: flex; align-items: center; gap: 10px; }
.rail-count { color: var(--text-on-dark); font-size: 13px; font-weight: 700; letter-spacing: .1em; min-width: 64px; text-align: center; unicode-bidi: isolate; }
.rail-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-on-dark); background: var(--control-on-dark); color: var(--white); display: grid; place-items: center; padding: 0; transition: .25s ease; backdrop-filter: blur(8px); }
.rail-btn:hover:not([disabled]) { background: var(--plum-soft); }
.rail-btn[disabled] { opacity: .35; cursor: default; }

.portfolio-rail {
  position: relative;
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-block: 10px 20px;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  scroll-padding-inline: max(18px, calc((100% - 1180px) / 2));
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.25) transparent;
  mask-image: linear-gradient(to left, transparent, #000 42px, #000 calc(100% - 42px), transparent);
  -webkit-mask-image: linear-gradient(to left, transparent, #000 42px, #000 calc(100% - 42px), transparent);
}
.portfolio-rail::-webkit-scrollbar { height: 6px; }
.portfolio-rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 99px; }
.portfolio-rail::-webkit-scrollbar-track { background: transparent; }
.portfolio-rail:focus-visible { outline: none; }

.portfolio-item { position: relative; flex: 0 0 auto; height: clamp(240px, 34vw, 400px); padding: 0; border: 1px solid var(--line-on-dark); overflow: hidden; border-radius: 18px; background: var(--white); scroll-snap-align: start; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.portfolio-item picture { display: block; height: 100%; }
.portfolio-item img { height: 100%; width: auto; display: block; transition: transform .45s ease; }
.portfolio-item::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 45%; background: linear-gradient(to top, rgba(29,13,24,.6), transparent); pointer-events: none; }
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-item:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.item-num { position: absolute; top: 12px; left: 14px; z-index: 1; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .1em; background: var(--caption-bg); padding: 4px 10px; border-radius: 99px; backdrop-filter: blur(8px); }
.item-cap { position: absolute; right: 16px; bottom: 14px; z-index: 1; color: var(--white); font-size: 13px; font-weight: 800; text-shadow: 0 1px 10px rgba(0,0,0,.55); }

.process-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; position: relative; }
.process-list:before { content: ""; position: absolute; top: 34px; right: 9%; left: 9%; height: 1px; background: var(--border); }
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step > span { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: var(--paper); border: 1px solid var(--border); color: var(--plum); font-weight: 800; box-shadow: 0 0 0 9px var(--paper); }
.process-step h3 { margin: 0 0 8px; color: var(--plum-dark); font-size: 18px; }
.process-step p { color: var(--muted); font-size: 13px; margin: 0; }

.why-section { background: var(--surface-cream); }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.quote-card { min-height: 480px; background: linear-gradient(160deg,var(--plum),var(--plum-dark)); color: var(--white); border-radius: 32px; padding: 58px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.quote-card:after { content:""; position:absolute; width:280px; height:280px; border:1px solid var(--line-on-dark); border-radius:50%; top:-90px; left:-70px; box-shadow: 0 0 0 42px rgba(255,255,255,.025),0 0 0 82px rgba(255,255,255,.02); }
.quote-ornament { position: absolute; width: 330px; left: -110px; top: -110px; opacity: .2; filter: brightness(3); transform: rotate(14deg); pointer-events: none; }
.quote-mark { position: absolute; top: 20px; right: 34px; font-family: Georgia,serif; font-size: 120px; opacity: .16; line-height:1; }
.quote-card p { font-family: "Aref Ruqaa"; font-size: 32px; line-height: 1.7; margin: 0 0 24px; }
.quote-card strong { color: var(--gold-light); font-size: 13px; }
.why-copy h2 { margin-bottom: 28px; }
.feature-list { display: grid; gap: 18px; }
.feature-list div { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.feature-list span { width: 36px; height: 36px; border-radius: 50%; background: var(--plum-tint); color: var(--plum); display: grid; place-items: center; font-weight: 800; }
.feature-list p { margin: 2px 0 0; color: var(--muted); }
.feature-list strong { color: var(--plum-dark); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: start; }
.faq-grid .section-heading { position: sticky; top: 118px; margin-bottom: 0; }
.text-link { display: inline-flex; margin-top: 22px; color: var(--plum); font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  position: relative; padding: 22px 0 22px 44px; color: var(--plum-dark);
  font-size: 16px; font-weight: 800; cursor: pointer; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; left: 4px; top: 20px; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: 50%; background: var(--plum-tint);
  color: var(--plum); font-size: 20px; line-height: 1; transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: -4px 0 22px; color: var(--muted); font-size: 14px; }

.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: start; }
.contact-copy > p { color: var(--muted); }
.contact-cards { display: grid; gap: 10px; margin: 30px 0; }
.contact-cards a { border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; transition:.25s ease; }
.contact-cards a:hover { border-color: rgba(91,23,77,.35); transform: translateX(-4px); }
.contact-cards span { color: var(--muted); font-size: 12px; }
.contact-cards strong { color: var(--plum-dark); font-size: 13px; }
.hours-box { border-right: 3px solid var(--gold); padding: 2px 18px 2px 0; }
.hours-box h3 { margin: 0 0 8px; color: var(--plum-dark); }
.hours-box p { margin: 2px 0; color: var(--muted); font-size: 13px; }
.social-block { margin-top: 34px; }
.social-block h3 { margin: 0 0 6px; color: var(--plum-dark); }
.social-block > p { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; }
.social-links a {
  min-height: 44px; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 999px; padding: 9px 13px;
  background: var(--paper); color: var(--plum-dark); font-size: 12px; font-weight: 700;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.social-links a:hover { transform: translateY(-2px); color: var(--plum); border-color: rgba(91,23,77,.35); background: var(--white); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }

.contact-form { background: var(--paper); border: 1px solid var(--border); border-radius: 28px; padding: 28px; box-shadow: 0 20px 60px rgba(56,16,47,.06); }
.contact-form label { display: block; font-size: 13px; font-weight: 700; color: var(--plum-dark); margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; border: 1px solid var(--plum-tint-border); background: var(--white); border-radius: 13px; padding: 13px 14px; color: var(--ink); outline: none; transition: .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--plum-soft); box-shadow: 0 0 0 3px rgba(91,23,77,.06); }
.select-field { position: relative; display: block; margin-top: 7px; }
.select-field select {
  margin-top: 0; padding-inline-start: 14px; padding-inline-end: 48px;
  appearance: none; -webkit-appearance: none; cursor: pointer;
}
.select-field-icon {
  position: absolute; inset-inline-end: 16px; top: 50%; width: 20px; height: 20px;
  color: var(--plum); fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; pointer-events: none;
  transform: translateY(-50%); transition: color .2s ease;
}
.select-field:focus-within .select-field-icon { color: var(--plum-dark); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.full { width: 100%; }
.form-note { color: var(--muted); font-size: 11px; margin: 12px 2px 0; }
.form-note a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.honey-field {
  position: absolute !important; inline-size: 1px !important; block-size: 1px !important;
  overflow: hidden !important; clip-path: inset(50%) !important; white-space: nowrap !important;
}
.form-status { min-height: 26px; margin-top: 12px; font-size: 13px; font-weight: 700; }
.form-status.success { color: #1d6b46; }
.form-status.error { color: #9f2430; }
.form-fallback { display: inline-block; margin-top: 3px; color: var(--plum); font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.form-fallback[hidden] { display: none; }
.submit-btn.is-loading { cursor: wait; }

.site-footer { background: var(--surface-dark); color: var(--text-on-dark-strong); padding: 54px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 44px; align-items: start; }
.footer-brand strong { color: var(--white); }
.footer-brand small { color: var(--text-on-dark-muted); }
.site-footer p { font-size: 12px; }
.footer-links { display: grid; gap: 9px; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-meta { text-align: left; font-size: 12px; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: var(--overlay); display: none; align-items: center; justify-content: center; padding: 26px; }
.lightbox[hidden] { display: none; }
.lightbox.open { display: flex; }
.lightbox picture { display: block; }
.lightbox img { max-width: min(1100px, 90vw); max-height: 88vh; object-fit: contain; border-radius: 12px; box-shadow: 0 26px 90px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav { position: absolute; border: 0; background: var(--control-on-dark); color: var(--white); backdrop-filter: blur(8px); display: grid; place-items: center; }
.lightbox-close { top: 18px; left: 18px; width: 44px; height: 44px; border-radius: 50%; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 46px; height: 66px; border-radius: 14px; }
.lightbox-nav.prev { right: 22px; }
.lightbox-nav.next { left: 22px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 960px) {
  .section-pad { padding: 82px 0; }
  .menu-toggle { display: grid; }
  .nav-links { position: absolute; top: 78px; right: 18px; left: 18px; padding: 18px; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; }
  .nav-cta { text-align: center; }
  .hero-grid, .why-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 500px; margin-top: 10px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-list { grid-template-columns: repeat(2,1fr); row-gap: 42px; }
  .process-list:before { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-head { margin-bottom: 36px; }
  .faq-grid { gap: 36px; }
  .faq-grid .section-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { text-align: right; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand-mark { width: 44px; height: 44px; }
  .hero-ornament { width: 380px; right: -150px; bottom: -160px; opacity: .5; }
  .hero { padding-top: 76px; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-points { gap: 9px 14px; }
  .hero-showcase { min-height: 390px; }
  .front-card { width: 92%; }
  .back-card { width: 78%; height: 370px; top: 6%; padding: 28px 22px; }
  .brand-seal { width: 70px; height: 70px; top: 8px; right: 4%; }
  .floating-badge { left: 0; bottom: 24px; }
  .trust-grid, .services-grid, .process-list, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-left: 0; border-bottom: 1px solid var(--line-on-dark); }
  .portfolio-head { margin-bottom: 28px; }
  .portfolio-rail { gap: 12px; scroll-snap-type: x proximity; }
  .rail-count { min-width: 48px; font-size: 12px; }
  .quote-card { min-height: 410px; padding: 34px; }
  .quote-card p { font-size: 27px; }
  .contact-form { padding: 20px; }
  .social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-links a { justify-content: center; }
  .footer-meta { text-align: right; }
  .lightbox-nav { width: 44px; height: 56px; }
  .lightbox-nav.prev { right: 10px; }
  .lightbox-nav.next { left: 10px; }
}

.skip-link {
  position: fixed; top: 14px; right: 14px; z-index: 200;
  background: var(--plum); color: var(--white);
  padding: 10px 18px; border-radius: 12px; font-weight: 700;
  transform: translateY(-200%); transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.toast {
  position: fixed; bottom: 26px; right: 50%; transform: translate(50%, 140%);
  z-index: 150; max-width: min(480px, calc(100vw - 40px));
  background: var(--surface-dark); color: var(--text-on-dark-strong);
  border: 1px solid var(--line-on-dark); border-radius: 14px;
  padding: 14px 20px; font-size: 14px; line-height: 1.7; text-align: center;
  box-shadow: var(--shadow); transition: transform .35s ease; pointer-events: none;
}
.toast.show { transform: translate(50%, 0); }

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