/* ==========================================================================
   Big Why Movers — design system
   Warm alpine palette: deep slate ink, sunset amber, paper-white.
   ========================================================================== */

:root {
  --ink:        #14202b;
  --ink-2:      #24384a;
  --ink-3:      #4a627a;
  --paper:      #fbf8f4;
  --paper-2:    #f3ece2;
  --paper-3:    #e7ddcf;
  --white:      #ffffff;
  --amber:      #d9642c;
  --amber-dk:   #b64f1e;
  --amber-lt:   #fbe9dd;
  --sky:        #2c6c9b;
  --pine:       #2f5d4f;
  --line:       rgba(20, 32, 43, 0.12);
  --line-soft:  rgba(20, 32, 43, 0.07);

  --shadow-sm:  0 1px 2px rgba(20, 32, 43, 0.06), 0 2px 6px rgba(20, 32, 43, 0.05);
  --shadow-md:  0 2px 6px rgba(20, 32, 43, 0.07), 0 12px 28px rgba(20, 32, 43, 0.09);
  --shadow-lg:  0 6px 16px rgba(20, 32, 43, 0.10), 0 28px 60px rgba(20, 32, 43, 0.16);

  --radius:     14px;
  --radius-lg:  24px;
  --wrap:       1160px;

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.01em; }
p  { margin: 0 0 1rem; text-wrap: pretty; }

a { color: var(--amber-dk); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--amber); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--amber); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--amber-dk); color: var(--white); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); color: var(--white); }

.btn-ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-ghost-light { border-color: rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn svg { width: 1.05em; height: 1.05em; flex: none; }

/* Inline icons that sit inside a line of text */
.topbar-note svg,
.eyebrow svg,
.more svg,
.chip svg,
.contact-line dd svg {
  width: 1.05em; height: 1.05em; flex: none;
  vertical-align: -0.14em;
}

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

.topbar {
  background: var(--ink); color: rgba(255,255,255,.86);
  font-size: .87rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 40px; padding-block: 7px;
}
.topbar a { color: var(--white); font-weight: 600; text-decoration: none; }
.topbar a:hover { color: var(--amber-lt); text-decoration: underline; }
.topbar-note { display: flex; align-items: center; gap: .5em; }
@media (max-width: 720px) { .topbar-note { display: none; } .topbar .container { justify-content: center; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  display: flex; align-items: center; gap: 20px; min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; letter-spacing: -0.03em; line-height: 1; }
.brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 600; font-size: .96rem; color: var(--ink-2); text-decoration: none;
  padding: 9px 13px; border-radius: 9px;
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--amber-dk); background: var(--amber-lt); }
.nav .btn { margin-left: 8px; padding: 12px 20px; font-size: .96rem; }

.nav-toggle {
  display: none; background: transparent; border: 2px solid var(--line);
  border-radius: 10px; padding: 9px 11px; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: var(--paper); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 88px 20px 28px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .24s ease, visibility .24s ease;
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateX(0); visibility: visible; }
  .nav a { padding: 13px 14px; font-size: 1.05rem; }
  .nav .btn { margin: 10px 0 0; justify-content: center; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(20,32,43,.45);
    opacity: 0; pointer-events: none; transition: opacity .24s ease; z-index: 99;
  }
  .nav-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }
}

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

.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(48px, 7vw, 88px) clamp(56px, 8vw, 104px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(217,100,44,.30), transparent 58%),
    radial-gradient(90% 80% at 100% 100%, rgba(44,108,155,.34), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: #ffd9c4;
  background: rgba(217,100,44,.18);
  border: 1px solid rgba(217,100,44,.42);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: .35em; }
.hero h1 .accent { color: #ffb289; }
.hero-lede { font-size: clamp(1.06rem, 1.7vw, 1.22rem); color: rgba(255,255,255,.82); max-width: 34em; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: .92rem; color: rgba(255,255,255,.78);
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16);
}
.trust-row span { display: inline-flex; align-items: center; gap: .5em; }
.trust-row svg { width: 17px; height: 17px; color: #7fd4a8; flex: none; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.hero-tag {
  position: absolute; left: -14px; bottom: 26px;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 13px 18px;
  box-shadow: var(--shadow-lg); max-width: 15rem;
}
.hero-tag strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.hero-tag span { font-size: .85rem; color: var(--ink-3); }
@media (max-width: 900px) {
  .hero-figure { max-width: 460px; margin-inline: auto; }
  .hero-tag { left: 8px; }
}

/* ---------- Sections --------------------------------------------------- */

section { padding-block: clamp(52px, 7vw, 92px); }
section.tight { padding-block: clamp(40px, 5vw, 64px); }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: rgba(255,255,255,.84); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-head { max-width: 44rem; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--amber-dk);
  margin: 0 0 12px;
}
.section-dark .kicker { color: #ffb289; }
.section-head p { font-size: 1.08rem; color: var(--ink-3); margin-bottom: 0; }
.section-dark .section-head p { color: rgba(255,255,255,.74); }

/* ---------- Grids & cards ---------------------------------------------- */

.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin: .6rem 0 0; padding-left: 1.1rem; color: var(--ink-3); font-size: .96rem; }
.card ul li { margin-bottom: .3rem; }

a.card { display: block; text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line); color: inherit; }
a.card .more { display: inline-flex; align-items: center; gap: .4em; margin-top: 14px; font-weight: 600; color: var(--amber-dk); font-size: .95rem; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--amber-lt); color: var(--amber-dk);
  display: grid; place-items: center; margin-bottom: 16px;
}
.icon-badge svg { width: 24px; height: 24px; }

.step-num {
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  display: grid; place-items: center; margin-bottom: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}

/* ---------- Area chips -------------------------------------------------- */

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-block; padding: 9px 17px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--ink-2);
}
.chip:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Photo strip ------------------------------------------------- */

.photo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.photo-grid img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.photo-grid figure { margin: 0; }
.photo-grid figcaption { font-size: .85rem; color: var(--ink-3); margin-top: 8px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.gallery-grid figcaption { font-size: .93rem; color: var(--ink-3); margin-top: 10px; }

/* ---------- FAQ --------------------------------------------------------- */

.faq { max-width: 52rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 54px 20px 24px; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--amber-dk); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-body { padding: 0 24px 22px; color: var(--ink-3); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------------------------------------------------- */

.cta-band {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
  color: var(--white); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px); text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.08rem; max-width: 38rem; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.cta-band .btn-dark:hover { background: var(--white); color: var(--amber-dk); }

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

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 52px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md); }
.contact-line { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
.contact-line:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-line .icon-badge { margin-bottom: 0; width: 40px; height: 40px; border-radius: 10px; flex: none; }
.contact-line .icon-badge svg { width: 20px; height: 20px; }
.contact-line dt { font-family: var(--font-display); font-weight: 600; font-size: .96rem; margin-bottom: 2px; }
.contact-line dd { margin: 0; color: var(--ink-3); font-size: .97rem; }
.contact-line dd a { font-weight: 600; }
.big-number { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.3rem); letter-spacing: -.02em; text-decoration: none; color: var(--ink); display: inline-block; }
.big-number:hover { color: var(--amber-dk); }

/* ---------- Prose (tips / long form) ------------------------------------ */

.prose { max-width: 44rem; }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--ink-2); }
.prose li { margin-bottom: .5rem; }
.prose .callout {
  background: var(--amber-lt); border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 1.8rem 0;
}
.prose .callout p:last-child { margin-bottom: 0; }

.toc { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); margin-bottom: 2.4rem; }
.toc h2 { font-size: 1.05rem; margin: 0 0 .7em; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .35rem; }

/* ---------- Page header (interior pages) -------------------------------- */

.page-head {
  background: var(--ink); color: var(--white);
  padding-block: clamp(44px, 6vw, 76px);
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(100% 120% at 88% 0%, rgba(217,100,44,.28), transparent 62%);
}
.page-head .container { position: relative; }
.page-head h1 { color: var(--white); margin-bottom: .3em; }
.page-head p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 40em; margin-bottom: 0; }

.crumbs { font-size: .87rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.crumbs a { color: rgba(255,255,255,.86); text-decoration: none; }
.crumbs a:hover { color: var(--white); text-decoration: underline; }
.crumbs span { padding-inline: .45em; }

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

.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding-block: clamp(44px, 5vw, 64px) 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--white); font-size: .84rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 1.1em; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand .brand-sub { color: rgba(255,255,255,.55); }
.footer-brand p { color: rgba(255,255,255,.62); max-width: 26em; }
.footer-bottom {
  margin-top: 40px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  font-size: .87rem; color: rgba(255,255,255,.5);
}

/* ---------- Mobile sticky call bar -------------------------------------- */

.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20,32,43,.97); backdrop-filter: blur(10px);
  box-shadow: 0 -6px 24px rgba(20,32,43,.28);
}
.call-bar .btn { flex: 1; padding: 14px 12px; font-size: 1rem; }
@media (max-width: 760px) {
  .call-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- Utilities ---------------------------------------------------- */

.muted { color: var(--ink-3); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
