:root {
  --ink: #f7f4ec;
  --ink-soft: #b8b0a0;
  --paper: #000000;
  --surface: #0c0c0c;
  --surface-2: #141414;
  --red: #d4af37;
  --red-hot: #e8c547;
  --line: rgba(212, 175, 55, 0.18);
  --line-strong: rgba(212, 175, 55, 0.45);
  --font-ar: "IBM Plex Sans Arabic", "Montserrat", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-en: "Montserrat", "IBM Plex Sans Arabic", sans-serif;
  --shell: min(1140px, calc(100% - 2.4rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ar);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(700px 420px at 10% 30%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, #050505 0%, var(--paper) 40%, #0d0d0d 100%);
  background-attachment: fixed;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--red-hot);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -3rem;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.1);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(0, 0, 0, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  max-width: min(420px, 58vw);
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 3.1rem;
  object-fit: contain;
  object-position: right center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  color: #d7d7d7;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.25rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav a:not(.nav-cta):hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.58rem 1.05rem;
  background: var(--red);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--red-hot);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: #fff;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-panel {
  max-width: 48rem;
}

.lang-switch {
  opacity: 0.85;
  font-size: 0.88rem !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(94vh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.35) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 45%);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 22s ease-in-out infinite alternate;
  opacity: 0.9;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, 0, 0);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.2rem;
  color: #fff;
  max-width: 46rem;
  margin-inline: 0 auto auto;
  animation: rise 0.95s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  display: block;
  width: min(520px, 92%);
  margin: 0 0 1.35rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  line-height: 1.4;
  font-weight: 600;
  max-width: 18ch;
  color: #f5f5f5;
}

.lede,
.section-lede {
  margin: 0;
  color: inherit;
  font-size: 1.05rem;
  max-width: 38rem;
}

.hero .lede {
  color: rgba(230, 230, 230, 0.88);
  margin-bottom: 1.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.72rem 1.25rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--red-hot);
  color: #fff !important;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.contact .btn-ghost,
.section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3.1vw, 2.15rem);
  line-height: 1.35;
}

.section-lede {
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.service-stack {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 280px;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-visual {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 240px;
}

.service-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-copy {
  padding: 2.4rem 0 2.4rem 2rem;
  display: grid;
  align-content: center;
}

.service-row:nth-child(even) .service-copy {
  padding: 2.4rem 2rem 2.4rem 0;
  order: -1;
}

.service-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.service-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
}

.service-copy h3 a {
  text-decoration: none;
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0 2px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease);
}

.service-copy h3 a:hover {
  background-size: 100% 2px;
  color: #fff;
}

.service-copy p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.link-list a {
  color: #ddd;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.link-list a::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
  flex-shrink: 0;
}

.link-list a:hover {
  color: var(--red-hot);
}

.why {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.08), transparent 45%),
    var(--surface);
  border-block: 1px solid var(--line);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.why-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
  padding-top: 0.05rem;
}

.why-list strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.why-list span {
  color: var(--ink-soft);
}

.journey {
  padding: 0;
}

.journey-band {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: grid;
  align-items: center;
  color: #fff;
  background: #000;
}

.journey-band svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-copy {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  max-width: 34rem;
}

.journey-copy h2 {
  margin: 0 0 0.7rem;
}

.journey-copy p {
  margin: 0;
  color: rgba(230, 230, 230, 0.88);
}

.contact {
  padding-bottom: 5.5rem;
}

.contact-panel {
  position: relative;
  padding: 2.6rem 0 0.5rem;
  max-width: 42rem;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset-inline-start: -1.2rem;
  top: 2.6rem;
  bottom: 0.5rem;
  width: 3px;
  background: var(--red);
}

.contact-panel p {
  color: var(--ink-soft);
  margin: 0 0 1.35rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2.8rem;
  background: #000;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: end;
}

.footer-logo {
  width: min(360px, 100%);
  margin-bottom: 0.7rem;
}

.footer-inner p {
  margin: 0.25rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-inner nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer-inner nav a {
  text-decoration: none;
  font-weight: 500;
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3.8rem 0 2.4rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(212, 175, 55, 0.14), transparent 50%),
    var(--surface);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -5%;
  top: -20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
  pointer-events: none;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  line-height: 1.32;
  max-width: 16ch;
}

.page-hero .lede {
  color: var(--ink-soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  text-decoration: none;
}

.content {
  padding: 2.8rem 0 4.4rem;
}

.prose {
  max-width: 44rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.prose h2 {
  margin: 2.1rem 0 0.7rem;
  font-size: 1.35rem;
  position: relative;
  padding-inline-start: 0.85rem;
  color: #fff;
}

.prose h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 3px;
  background: var(--red);
}

.prose ul {
  margin: 0 0 1.2rem;
  padding-inline-start: 1.2rem;
  color: var(--ink-soft);
}

.prose li + li {
  margin-top: 0.35rem;
}

.related {
  margin-top: 2.6rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.related h2 {
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
  padding-inline-start: 0;
}

.related h2::before {
  display: none;
}

.ltr {
  direction: ltr;
  text-align: left;
}

.ltr .brand-logo {
  object-position: left center;
}

@media (max-width: 900px) {
  :root {
    --shell: min(1140px, calc(100% - 1.35rem));
  }

  body {
    background-attachment: scroll;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    min-height: 3.75rem;
    gap: 0.65rem;
  }

  /* Show KT mark only — full banner is unreadable on phones */
  .brand {
    max-width: none;
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 4.75rem;
    height: 2.35rem;
    max-height: none;
    object-fit: cover;
    object-position: left center;
  }

  .ltr .brand-logo {
    object-position: left center;
  }

  .service-row,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-copy {
    order: 0;
    padding: 1.35rem 0 1.75rem;
  }

  .service-copy {
    padding: 1.35rem 0 1.75rem;
  }

  .service-visual {
    min-height: 160px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.85rem;
    height: 2.85rem;
    flex-shrink: 0;
  }

  .nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 1.1rem calc(1rem + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .site-header.is-open {
    border-bottom-color: var(--line);
    background: #000;
  }

  .nav a {
    padding: 1rem 0.15rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.65rem;
    text-align: center;
    border-bottom: 0 !important;
    justify-content: center;
    min-height: 3.1rem;
  }

  .hero {
    min-height: auto;
    min-height: 100svh;
    max-height: none;
    align-items: end;
  }

  .hero-copy {
    padding: 5.5rem 0 3.25rem;
    max-width: none;
  }

  .hero-brand {
    width: min(100%, 20rem);
    margin-bottom: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    max-width: none;
    margin-bottom: 0.85rem;
  }

  .hero .lede {
    font-size: 0.98rem;
    margin-bottom: 1.35rem;
    max-width: none;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row .btn,
  .contact-actions .btn {
    width: 100%;
    min-height: 3.15rem;
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }

  .section h2,
  .page-hero h1 {
    font-size: clamp(1.4rem, 6.5vw, 1.85rem);
    max-width: none;
  }

  .page-hero {
    padding: 2.4rem 0 1.6rem;
  }

  .page-hero::after {
    width: 200px;
    height: 200px;
  }

  .content {
    padding: 1.75rem 0 3.25rem;
  }

  .prose {
    font-size: 1rem;
  }

  .prose h2 {
    font-size: 1.18rem;
    margin-top: 1.6rem;
  }

  .steps li {
    padding: 1rem 1rem 1rem 3.1rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey-band {
    min-height: 220px;
  }

  .journey-copy {
    padding: 2.4rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-inner nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-logo {
    width: min(100%, 16rem);
  }

  .contact-panel {
    padding-top: 1.5rem;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .toc {
    padding: 0.9rem 1rem;
  }

  .header-inner {
    position: relative;
  }

  .contact-panel::before {
    display: none;
  }

  .service-row:hover .service-visual {
    transform: none;
  }

  .quick-bar {
    grid-template-columns: 1fr;
  }

  .quick-bar a {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
    padding: 1.15rem 1rem;
    min-height: 4.25rem;
  }

  .quick-bar a:first-child {
    border-top: 0;
  }
}

@media (max-width: 420px) {
  .hero-brand {
    width: 100%;
  }

  .brand-logo {
    width: 4.2rem;
    height: 2.1rem;
  }
}

/* Prevent iOS zoom on form-like controls if added later */
@supports (-webkit-touch-callout: none) {
  .btn,
  .nav a {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.25);
  }
}


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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* SEO content upgrades */
.steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 3.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 1rem;
  top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1.15rem;
}

.faq {
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: #fff;
}

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

.faq details p {
  margin: 0.7rem 0 0.2rem;
}

.toc {
  margin: 0 0 1.8rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-inline-start: 3px solid var(--red);
}

.toc strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
}

.toc ol {
  margin: 0;
  padding-inline-start: 1.2rem;
  color: var(--ink-soft);
}

.toc a {
  text-decoration: none;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0.5rem;
}

.trust-row div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.trust-row strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.trust-row span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.callout {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.callout p {
  margin: 0;
  color: #ddd;
}

@media (max-width: 860px) {
  .trust-row {
    grid-template-columns: 1fr;
  }
}

/* —— Quality polish pass —— */
::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible {
  outline-offset: 3px;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, #0a0a0a, transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-copy {
  padding-bottom: 5rem;
}

.hero-brand {
  animation: rise 0.85s var(--ease) both;
}

.hero h1 {
  animation: rise 1s 0.05s var(--ease) both;
}

.hero .lede {
  animation: rise 1.05s 0.1s var(--ease) both;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
  background: #000;
}

.quick-bar a {
  display: grid;
  gap: 0.25rem;
  padding: 1.35rem 1.2rem;
  text-decoration: none;
  border-inline-start: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.quick-bar a:first-child {
  border-inline-start: 0;
}

.quick-bar a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
}

.quick-bar strong {
  color: #fff;
  font-size: 1rem;
}

.quick-bar span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-visual {
  transition: transform 0.5s var(--ease);
}

.service-row:hover .service-visual {
  transform: scale(1.02);
}

.service-row {
  transition: background 0.3s ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.page-hero h1 {
  animation: rise 0.7s var(--ease) both;
}

.prose {
  font-size: 1.02rem;
}

.contact {
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(212, 175, 55, 0.14), transparent 60%),
    transparent;
}

@media (max-width: 900px) {
  .quick-bar {
    grid-template-columns: 1fr;
  }

  .quick-bar a {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .quick-bar a:first-child {
    border-top: 0;
  }

  .service-row:hover .service-visual {
    transform: none;
  }
}

/* —— Final phone overrides (must stay last) —— */
@media (max-width: 900px) {
  body {
    background-attachment: scroll !important;
  }

  .shell {
    width: min(100% - 1.25rem, 1140px);
  }

  .brand-logo {
    width: 4.75rem !important;
    height: 2.35rem !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: left center !important;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    padding: 5.25rem 0 2.75rem !important;
    max-width: none !important;
  }

  .hero-brand {
    width: min(100%, 18.5rem) !important;
    margin-bottom: 1rem !important;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 6.8vw, 1.8rem) !important;
    max-width: none !important;
    line-height: 1.35 !important;
  }

  .hero .lede {
    font-size: 0.98rem !important;
    max-width: none !important;
  }

  .hero::after {
    height: 80px;
  }

  .cta-row,
  .contact-actions {
    flex-direction: column !important;
    width: 100%;
  }

  .cta-row .btn,
  .contact-actions .btn,
  .btn {
    width: 100%;
    min-height: 3.2rem;
  }

  .section {
    padding: 2.75rem 0 !important;
  }

  .prose {
    font-size: 1rem !important;
  }

  .quick-bar {
    grid-template-columns: 1fr !important;
  }

  .quick-bar a {
    border-inline-start: 0 !important;
    border-top: 1px solid var(--line);
    padding: 1.1rem 1rem !important;
  }

  .quick-bar a:first-child {
    border-top: 0 !important;
  }

  .service-visual {
    min-height: 150px !important;
  }

  .page-hero {
    padding: 2.1rem 0 1.4rem !important;
  }

  .content {
    padding: 1.5rem 0 3rem !important;
  }

  .footer-logo {
    width: min(100%, 15rem) !important;
  }

  .steps li {
    padding-inline-start: 3rem !important;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 4rem !important;
    height: 2rem !important;
  }

  .hero-brand {
    width: 100% !important;
  }
}
