/* ==========================================================================
   The Moving King — temporary site
   Plain CSS. No build step. Edit values in :root to retheme.
   ========================================================================== */

:root {
  /* Brand */
  --orange:      #EE7623;
  --orange-deep: #D4611A;
  --gold:        #F7C55E;
  --gold-light:  #FBD98C;
  --grad:        linear-gradient(100deg, var(--orange) 0%, var(--gold) 100%);
  --grad-text:   linear-gradient(100deg, var(--orange) 10%, var(--gold-light) 90%);

  /* Surfaces */
  --bg:          #0B0B0C;
  --bg-2:        #131316;
  --bg-3:        #1A1A1F;
  --line:        rgba(238, 118, 35, 0.28);
  --line-soft:   rgba(255, 255, 255, 0.09);

  /* Type */
  --ink:         #FFFFFF;
  --ink-2:       #C9C9CF;
  --ink-3:       #8E8E98;

  /* Type families: Poppins carries the headings (it matches the logo's
     geometry); DM Sans handles body and UI, where it reads better small. */
  --font-head:   "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body:   "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap:        1200px;
  --radius:      14px;
  --shadow:      0 18px 50px rgba(0, 0, 0, 0.45);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.25rem); letter-spacing: 0.01em; }
p  { margin: 0 0 1rem; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.ic {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.section--alt { background: var(--bg-2); }

/* Small uppercase eyebrow with a rule running off to the right */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.lead { font-size: 1.05rem; color: var(--ink-2); max-width: 62ch; }
.center { text-align: center; }
.center .lead,
.page-head .lead { margin-inline: auto; }

/* ---------- Buttons ---------------------------------------------------- */

.btn {
  --btn-pad: 14px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--grad);
  color: #1A1200;
  box-shadow: 0 10px 26px rgba(238, 118, 35, 0.3);
}
.btn--primary:hover { color: #1A1200; box-shadow: 0 14px 34px rgba(238, 118, 35, 0.44); }

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--orange);
}
.btn--ghost:hover { background: rgba(238, 118, 35, 0.12); color: var(--gold-light); }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn-row--center { justify-content: center; }

/* ---------- Maintenance notice ----------------------------------------- */

.notice {
  background: var(--grad);
  color: #1A1200;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 44px 9px 22px;
  position: relative;
}
.notice a { color: #1A1200; text-decoration: underline; }
.notice__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #1A1200;
  font-size: 1.3rem;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  opacity: 0.7;
}
.notice__close:hover { opacity: 1; }

/* ---------- Header ------------------------------------------------------ */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line-soft); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 62px; width: auto; }
/* Shown only if the logo image is missing / not yet added */
.logo__fallback {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.28s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 14px; }

/* The nav carries its own CTA for the mobile drawer; on desktop the
   .header__cta one is the single call to action. */
.nav > .btn { display: none; }

.burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s linear;
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero -------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(60px, 9vw, 118px) 0 clamp(50px, 7vw, 92px);
}
/* The angled gold wedge from the brand's hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 -10% 0 auto;
  width: 58%;
  background: var(--grad);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 8% 40%, rgba(238, 118, 35, 0.14), transparent 70%);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; font-size: clamp(2rem, 4.4vw, 3.35rem); }
.hero h1 > span { display: block; }
.hero__sub {
  color: var(--ink);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.55;
  max-width: 46ch;
}

.hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.hero__art img { max-height: 420px; width: auto; filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.45)); }

/* Stat cards under the hero */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: clamp(40px, 6vw, 66px);
  position: relative;
  z-index: 1;
}
.stat {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
}
.stat__icon {
  font-size: 1.7rem;
  color: var(--orange);
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.stat__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat__label { font-size: 0.82rem; color: var(--ink-3); }

/* ---------- Services ---------------------------------------------------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.service {
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service:hover { transform: translateY(-5px); border-color: var(--line); }
.service:hover::before { transform: scaleX(1); }
.service__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(238, 118, 35, 0.14);
  font-size: 1.35rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.service h3 { margin-bottom: 8px; }
.service p { font-size: 0.93rem; margin: 0; color: var(--ink-3); }

/* ---------- Why us / process ------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 44px;
  counter-reset: step;
}
.step { padding-top: 18px; border-top: 2px solid var(--line); }
.step__num {
  font-family: var(--font-head);
  counter-increment: step;
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step__num::before { content: "0" counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.92rem; color: var(--ink-3); margin: 0; }

/* ---------- Service areas ----------------------------------------------- */

.areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.area {
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 10px 22px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.area:hover { background: var(--grad); color: #1A1200; }

/* ---------- Contact ----------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.contact-card {
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.contact-card__icon {
  font-size: 1.55rem;
  color: var(--orange);
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.contact-card h3 { font-size: 0.8rem; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 10px; }
.contact-card p { margin: 0; }
.contact-card a { font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.contact-card a:hover { color: var(--gold); }

.cta-band {
  background: var(--grad);
  color: #1A1200;
  border-radius: 18px;
  padding: clamp(34px, 5vw, 54px);
  text-align: center;
  margin-top: 52px;
}
.cta-band h2 { color: #1A1200; margin-bottom: 10px; }
.cta-band p { color: rgba(26, 18, 0, 0.82); font-weight: 500; margin-bottom: 26px; }
.cta-band .btn--dark {
  background: #101013;
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.cta-band .btn--dark:hover { color: var(--gold-light); }

/* ---------- Footer ------------------------------------------------------ */

.footer {
  background: #08080A;
  border-top: 3px solid transparent;
  border-image: var(--grad) 1;
  padding: clamp(46px, 6vw, 70px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  align-items: start;
  text-align: center;
}
.footer h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.footer h3::before,
.footer h3::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }

.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links a { color: var(--ink-2); font-size: 0.95rem; line-height: 2; }
.footer__links a:hover { color: var(--gold); }

.footer__brand img { height: 74px; width: auto; margin: 0 auto 16px; }
.footer__mission { font-size: 0.92rem; color: var(--ink-2); }
.footer__legal { font-size: 0.88rem; font-weight: 600; color: var(--gold); margin-bottom: 4px; }

.socials { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--orange);
  color: #101013;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.socials a:hover { transform: translateY(-3px); background: var(--gold); color: #101013; }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.socials--wide a { width: auto; padding: 0 14px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; }

.footer__contact p { font-size: 0.98rem; color: var(--ink-2); margin-bottom: 18px; }
.footer__contact a { color: var(--ink-2); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact .ico {
  color: var(--orange);
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.footer__bar {
  margin-top: clamp(36px, 5vw, 56px);
  background: var(--grad);
  color: #1A1200;
}
.footer__bar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 14px;
  font-size: 0.88rem;
  font-weight: 500;
}
.footer__bar a { color: #1A1200; }
.footer__bar a:hover { color: #3a2a00; text-decoration: underline; }

/* ---------- Floating call button ---------------------------------------- */

.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #FFFFFF;
  color: var(--orange);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s var(--ease);
}
.call-fab:hover { transform: scale(1.07); color: var(--orange-deep); }
.call-fab svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- Quote page --------------------------------------------------- */

.page-head {
  padding: clamp(48px, 7vw, 84px) 0 clamp(30px, 4vw, 46px);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.embed-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
  min-height: 600px;
  overflow: hidden;
}
.embed-card iframe { width: 100%; border: 0; display: block; }


.aside-card {
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.aside-card + .aside-card { margin-top: 20px; }
.aside-card h3 { font-size: 0.9rem; letter-spacing: 0.14em; margin-bottom: 14px; }
.aside-card ul { margin: 0; padding-left: 18px; }
.aside-card li { font-size: 0.93rem; margin-bottom: 8px; color: var(--ink-2); }
.aside-card .btn { margin-top: 6px; }

/* ---------- Reveal on scroll -------------------------------------------- */

/* Only hide content when JS is actually running to reveal it again —
   otherwise a script failure would leave whole sections invisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Accessibility ------------------------------------------------ */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--orange);
  color: #101013;
  padding: 10px 18px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------------------------------------------------- */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; min-height: 0; }
  .hero__art img { max-height: 260px; }
  .hero::before { width: 100%; opacity: 0.16; clip-path: polygon(60% 0, 100% 0, 100% 100%, 22% 100%); }
  .quote-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: var(--nav-top, 78px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line-soft);
    padding: 8px 22px 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    max-height: calc(100vh - var(--nav-top, 78px));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav a::after { display: none; }
  .header__cta .btn { display: none; }
  .nav .btn { display: inline-flex; margin-top: 18px; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 78px; }
  .logo img { height: 44px; }
  .btn { --btn-pad: 13px 22px; font-size: 0.8rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .footer__bar .wrap { justify-content: center; text-align: center; }
  .call-fab { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}

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

@media print {
  .header, .call-fab, .notice, .btn-row { display: none !important; }
  body { background: #fff; color: #000; }
}
