/* ==========================================================================
   OTG MOVERS — Stylesheet
   Design: Industrial Precision
   Palette: Charcoal #232120 / Off-White #F7F5F2 / Red #D63A4A
   Type: Oswald 600-700 display / Barlow 400-500 body
   ========================================================================== */

/* --- Reset & Base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #F7F5F2;
  color: #2E2B29;
  font-family: 'Barlow', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #232120;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 2px solid #D63A4A; outline-offset: 3px; }

/* --- Layout --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

/* --- Typography ----------------------------------------------------------- */
.section-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #232120;
  line-height: 1.05;
}
.section-rule {
  width: 48px; height: 3px;
  background: #D63A4A;
  margin-top: 0.75rem;
}

/* --- Buttons -------------------------------------------------------------- */
.btn-red {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #D63A4A; color: #fff;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 2px solid #D63A4A; border-radius: 2px;
  transition: background 150ms, transform 100ms;
  white-space: nowrap; cursor: pointer;
}
.btn-red:hover { background: #B52E3C; border-color: #B52E3C; }
.btn-red:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #fff;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 2px solid rgba(255,255,255,0.6); border-radius: 2px;
  transition: border-color 150ms, background 150ms, transform 100ms;
  white-space: nowrap; cursor: pointer;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-ghost:active { transform: scale(0.97); }

.link-route {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #D63A4A; font-weight: 500; font-size: 1rem;
  border-bottom: 1.5px solid #D63A4A; padding-bottom: 1px;
  transition: color 150ms, border-color 150ms;
}
.link-route:hover { color: #B52E3C; border-color: #B52E3C; }

/* --- Scroll Reveal -------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 400ms cubic-bezier(0.23,1,0.32,1), transform 400ms cubic-bezier(0.23,1,0.32,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0; transform: translateX(-32px);
    transition: opacity 400ms cubic-bezier(0.23,1,0.32,1), transform 400ms cubic-bezier(0.23,1,0.32,1);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .d1 { transition-delay: 60ms; }
  .d2 { transition-delay: 120ms; }
  .d3 { transition-delay: 180ms; }
  .d4 { transition-delay: 240ms; }
  .d5 { transition-delay: 300ms; }
  .d6 { transition-delay: 360ms; }
  .d7 { transition-delay: 420ms; }
  .d8 { transition-delay: 480ms; }
}

/* =========================================================================
   HEADER
   ========================================================================= */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: #232120;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.logo-lockup {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none;
}
.logo-lockup img { width: 44px; height: 44px; object-fit: contain; }
.logo-lockup span {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.25rem; letter-spacing: 0.04em;
  color: #fff; text-transform: uppercase;
}
.desktop-nav { display: flex; gap: 2rem; align-items: center; }
.desktop-nav a {
  font-family: 'Barlow', sans-serif; font-weight: 500;
  font-size: 0.9375rem; color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em; transition: color 150ms;
}
.desktop-nav a:hover { color: #fff; }
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.header-cta .btn-red { font-size: 0.875rem; padding: 0.6rem 1.25rem; }

/* Hamburger */
.hamburger-btn {
  display: none; background: none; border: none;
  color: #fff; padding: 0.25rem; cursor: pointer;
}
.hamburger-btn svg { width: 24px; height: 24px; }
.mobile-menu { display: none; background: #232120; border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.5rem 1.5rem; }
.mobile-menu a {
  display: block; font-family: 'Barlow', sans-serif; font-weight: 500;
  font-size: 1.0625rem; color: rgba(255,255,255,0.85);
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: block; }

/* =========================================================================
   HERO
   ========================================================================= */
#hero {
  position: relative;
  min-height: clamp(520px, 80vh, 820px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-bg.webp') center 30% / cover no-repeat;
  filter: saturate(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(35,33,32,0.88) 0%, rgba(35,33,32,0.72) 55%, rgba(35,33,32,0.45) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 5rem 0; max-width: 680px; }
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; line-height: 1.0; margin-bottom: 1.25rem;
}
.hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 1.75rem; }
.hero-trust {
  font-size: 0.8125rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* =========================================================================
   TRUST STRIP
   ========================================================================= */
#trust-strip { background: #232120; padding: 1.25rem 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-item { display: flex; align-items: center; gap: 0.625rem; justify-content: center; }
.trust-item svg { color: #D63A4A; width: 22px; height: 22px; flex-shrink: 0; }
.trust-item span { font-weight: 500; font-size: 0.875rem; color: rgba(255,255,255,0.82); letter-spacing: 0.02em; }

/* =========================================================================
   SERVICES
   ========================================================================= */
#services { background: #F7F5F2; }
.services-intro { margin-bottom: 3rem; }
.services-intro p { font-size: 1.0625rem; color: #6E6A66; max-width: 620px; margin-top: 1rem; line-height: 1.65; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.service-card {
  display: block; background: #fff; border-radius: 2px;
  padding: 1.5rem; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
  box-shadow: 0 1px 4px rgba(35,33,32,0.06);
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: #D63A4A; transform: scaleY(0); transform-origin: bottom;
  transition: transform 200ms cubic-bezier(0.23,1,0.32,1);
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(35,33,32,0.12); }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover .card-icon { color: #D63A4A; }
.card-icon { width: 32px; height: 32px; margin-bottom: 0.875rem; color: #232120; transition: color 160ms; display: flex; }
.card-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.02em; color: #232120;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.service-card p { font-size: 0.9rem; color: #6E6A66; line-height: 1.55; }

/* =========================================================================
   MEET DEION
   ========================================================================= */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.about-portrait { position: relative; }
.about-portrait img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  border-radius: 2px; filter: saturate(0.85);
}
.portrait-bar {
  position: absolute; bottom: -8px; left: -8px;
  width: 60px; height: 4px; background: #D63A4A;
}
.about-copy h2 { margin-bottom: 0; }
.about-copy p {
  font-size: 1.0625rem; color: #2E2B29; line-height: 1.7;
  margin-top: 1.25rem; max-width: 65ch;
}
.about-copy .cta-link { margin-top: 1.75rem; }

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
#how-it-works { background: #fff; border-top: 1px solid #E0DDD9; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { position: relative; }
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #D63A4A; margin-bottom: 0.875rem;
}
.step-line {
  position: absolute; top: 4px;
  left: calc(10px + 0.5rem); right: -2rem;
  height: 1px; background: rgba(214,58,74,0.25);
}
.step h3 {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.0625rem;
  text-transform: uppercase; letter-spacing: 0.02em; color: #232120;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.step p { font-size: 0.9375rem; color: #6E6A66; line-height: 1.6; }

/* =========================================================================
   GALLERY
   ========================================================================= */
#gallery { background: #F7F5F2; }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8);
  transition: transform 400ms cubic-bezier(0.23,1,0.32,1), filter 300ms;
}
.gallery-item img:hover { transform: scale(1.04); filter: saturate(1); }

/* =========================================================================
   SERVICE AREA
   ========================================================================= */
#service-area { background: #232120; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); }
.area-bar-red { width: 48px; height: 4px; background: #D63A4A; margin-bottom: 1.5rem; }
.area-bar-muted { width: 48px; height: 4px; background: rgba(255,255,255,0.15); margin-bottom: 1.5rem; }
.area-rule-red { width: 48px; height: 3px; background: rgba(214,58,74,0.4); margin-top: 0.75rem; margin-bottom: 1.25rem; }
.area-rule-muted { width: 48px; height: 3px; background: rgba(255,255,255,0.15); margin-top: 0.75rem; margin-bottom: 1.25rem; }
.area-panel h2 { color: #fff; margin-bottom: 0; }
.area-panel .intro { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 1rem; }
.city-list {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.0625rem;
  color: #fff; letter-spacing: 0.04em; line-height: 2; margin-bottom: 0.5rem;
}
.city-note { font-size: 0.9375rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.area-map { border-radius: 2px; overflow: hidden; height: 280px; background: #1a1918; }
.area-map iframe { width: 100%; height: 100%; border: none; }
.area-long-img { margin-top: 2rem; border-radius: 2px; overflow: hidden; aspect-ratio: 16/9; }
.area-long-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.75); }
.area-long-copy { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.65; max-width: 48ch; }
.area-cta-row {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.area-cta-row p {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: clamp(1.1rem,2.5vw,1.4rem); color: #fff;
  text-transform: uppercase; letter-spacing: 0.02em;
}

/* =========================================================================
   QUOTE FORM
   ========================================================================= */
#quote { background: #D63A4A; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.quote-copy h2 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.6rem); text-transform: uppercase; margin-bottom: 1rem; }
.quote-copy .tagline { font-size: 1.0625rem; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 2rem; }
.skip-label {
  font-weight: 500; font-size: 0.875rem; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem;
}
.skip-phone {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem,3vw,2rem); color: #fff; letter-spacing: 0.02em;
}
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.quote-form .full { grid-column: 1 / -1; }
.form-label {
  display: block; font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.7); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 0.375rem;
}
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.9375rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 2px;
  color: #fff; outline: none; transition: border-color 150ms;
}
.form-input:focus { border-color: rgba(255,255,255,0.7); }
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-submit {
  width: 100%; padding: 0.9375rem;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.0625rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: #D63A4A; background: #fff; border: none; border-radius: 2px;
  cursor: pointer; transition: background 150ms, transform 100ms;
}
.form-submit:hover { background: #f0ede9; }
.form-submit:active { transform: scale(0.98); }
.form-success {
  display: none; background: rgba(0,0,0,0.2); border-radius: 2px;
  padding: 2.5rem; text-align: center;
}
.form-success p {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 1.4rem; color: #fff; text-transform: uppercase;
}
.form-error { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-top: 0.5rem; display: none; }

/* =========================================================================
   FOOTER
   ========================================================================= */
#site-footer { background: #232120; padding: 4rem 0 0; border-top: 3px solid #D63A4A; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem,4vw,4rem); padding-bottom: 3rem; }
.footer-brand .logo-lockup { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9375rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1.25rem; max-width: 32ch; }
.footer-ig { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 150ms; }
.footer-ig:hover { color: #fff; }
.footer-ig svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.9375rem; color: rgba(255,255,255,0.6); transition: color 150ms; }
.footer-col ul a:hover { color: #fff; }
.footer-phone {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.25rem;
  color: #fff; letter-spacing: 0.02em; margin-bottom: 1.25rem; display: block;
}
.footer-cities { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-cities strong { color: rgba(255,255,255,0.6); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; }
.footer-legal .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-legal p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 320px; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step-line { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-cta-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-red, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
