/* ==========================================================================
   Muscle & Miles Moving Co. — Stylesheet
   Sections:
     1. Variables & Reset
     2. Base Typography
     3. Layout & Containers
     4. Buttons
     5. Header & Navigation
     6. Hero
     7. Trust Banner
     8. Section Blocks (Advantage / Values / Process)
     9. Cards
     10. Forms
     11. Footer
     12. Floating Action Button
     13. Legal Page
     14. Utilities
   ========================================================================== */

/* 1. Variables & Reset ---------------------------------------------------- */
:root {
  --black: #161513;
  --black-soft: #24221e;
  --gold: #c6952e;
  --gold-dark: #a4791f;
  --gold-light: #e3b750;
  --red: #b3122a;
  --white: #ffffff;
  --off-white: #faf8f5;
  --gray-50: #f7f6f3;
  --gray-100: #eeece6;
  --gray-300: #cec9bf;
  --gray-500: #8a8478;
  --gray-700: #4a463d;
  --text: #1c1a17;
  --text-muted: #5b564b;
  --border: #e5e1d8;
  --shadow-sm: 0 2px 8px rgba(22, 21, 19, 0.06);
  --shadow-md: 0 10px 30px rgba(22, 21, 19, 0.14);
  --radius: 4px;
  --radius-lg: 8px;
  --chamfer: 9px;
  --container: 1200px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

svg {
  flex-shrink: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

/* 2. Base Typography -------------------------------------------------------*/
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--black);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin: 0 0 3rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* 3. Layout & Containers ---------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.bg-off {
  background: var(--off-white);
}

.bg-black {
  background: var(--black);
  color: var(--white);
}

.bg-black p {
  color: rgba(255, 255, 255, 0.72);
}

.bg-black h2, .bg-black h3 {
  color: var(--white);
}

/* 4. Buttons -----------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, clip-path 0.15s ease;
  white-space: nowrap;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
  --chamfer: 7px;
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.02rem;
  --chamfer: 12px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--black-soft);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

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

/* 5. Header & Navigation -----------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  position: relative;
  padding: 0.4rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.18s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--black);
}

.header-phone svg {
  color: var(--red);
  width: 18px;
  height: 18px;
}

.header-phone:hover {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 6. Hero --------------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--white);
  padding: 6.5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 14, 12, 0.82) 0%, rgba(15, 14, 12, 0.68) 55%, rgba(15, 14, 12, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content .eyebrow {
  color: var(--gold-light);
}

.hero-content h1 {
  color: var(--white);
}

.hero-content p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}

.hero-note {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-note svg {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

/* Page banner for interior pages */
.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
}

.page-banner .hero-bg img {
  opacity: 0.18;
}

.page-banner .hero-overlay {
  background: linear-gradient(180deg, rgba(15, 14, 12, 0.85), rgba(15, 14, 12, 0.85));
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

/* 7. Trust Banner --------------------------------------------------------------*/
.trust-banner {
  background: var(--black);
  border-top: 3px solid var(--gold);
  padding: 2.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item .stat {
  display: block;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-item .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* 8. Section Blocks --------------------------------------------------------*/
.advantage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.advantage-copy p {
  margin-bottom: 1.1rem;
}

.advantage-values {
  display: grid;
  gap: 1.5rem;
}

.value-item {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.value-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.value-item p {
  margin: 0;
  font-size: 0.92rem;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-top: 0.5rem;
}

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.92rem;
  margin: 0;
}

.process-connector {
  display: none;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black), var(--black-soft));
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
}

.cta-band .hero-bg img {
  opacity: 0.15;
}

.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.cta-band .cta-row {
  justify-content: center;
}

/* 9. Cards -------------------------------------------------------------------*/
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card .card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

.service-card .card-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}

.service-card .card-link:hover svg {
  transform: translateX(3px);
}

/* Detailed service blocks (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail .detail-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail .detail-icon svg {
  width: 32px;
  height: 32px;
}

.service-detail h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.service-detail ul {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.service-detail ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-detail ul li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Team / stat mini-cards */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mini-stat {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mini-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.mini-stat:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.mini-stat:hover::before {
  transform: scaleX(1);
}

.mini-stat .stat {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.mini-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Testimonial-style commitment blocks */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.commitment-item {
  padding: 1.75rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.commitment-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.commitment-item p {
  margin: 0;
  font-size: 0.93rem;
}

/* 10. Forms --------------------------------------------------------------------*/
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.form-group .required {
  color: var(--red);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group .field-error {
  display: none;
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-weight: 600;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--red);
}

.form-group.has-error .field-error {
  display: block;
}

.form-status {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.form-status.show {
  display: flex;
}

.form-status.success {
  background: #eaf5ec;
  color: #276b39;
  border: 1px solid #bfe3c5;
}

.form-status.error {
  background: #fbeaec;
  color: var(--red);
  border: 1px solid #f0c3c9;
}

.form-status svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Contact info sidebar */
.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.contact-info-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.35rem;
}

.contact-info-list .info-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-info-list .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(198, 149, 46, 0.16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-list .info-icon svg {
  width: 19px;
  height: 19px;
}

.contact-info-list .info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.contact-info-list .info-value {
  font-weight: 700;
  font-size: 1rem;
}

.contact-info-list .info-value.small {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-info-list a.info-value:hover {
  color: var(--gold-light);
}

.hours-table {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.75);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--white);
}

/* 11. Footer -------------------------------------------------------------------*/
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-tagline {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.65rem;
}

.footer-col ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-inner a:hover {
  color: var(--gold-light);
}

/* 12. Floating Action Button ----------------------------------------------------*/
.fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(179, 18, 42, 0.4);
  z-index: 200;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(179, 18, 42, 0.48);
}

.fab svg {
  width: 26px;
  height: 26px;
}

.fab-label {
  position: absolute;
  right: 72px;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.fab:hover .fab-label {
  opacity: 1;
}

/* 13. Legal Page ------------------------------------------------------------*/
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 6.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--off-white);
}

.legal-toc h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--gray-500);
}

.legal-toc ul {
  display: grid;
  gap: 0.65rem;
}

.legal-toc a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.legal-toc a:hover {
  color: var(--gold-dark);
}

.legal-content h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 1.3rem;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}

/* 14. Utilities ----------------------------------------------------------------*/
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Scroll-reveal (applied via JS; respects reduced-motion) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid > *:nth-child(2),
.process-grid > *:nth-child(2),
.mini-stats > *:nth-child(2),
.commitment-grid > *:nth-child(2),
.advantage-values > *:nth-child(2) {
  transition-delay: 0.08s;
}

.card-grid > *:nth-child(3),
.process-grid > *:nth-child(3),
.mini-stats > *:nth-child(3),
.commitment-grid > *:nth-child(3),
.advantage-values > *:nth-child(3) {
  transition-delay: 0.16s;
}

.process-grid > *:nth-child(4),
.advantage-values > *:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Mobile menu footer (phone + CTA shown inside the full-screen mobile nav) */
.mobile-menu-footer {
  display: none;
}
