/* ============================================
   DOLLY'S DETAIL — Global Styles
   ============================================ */

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

:root {
  --black: #0A0A0A;
  --gray: #6B6B6B;
  --light-gray: #D8D8D8;
  --bg: #FFFFFF;
  --max-width: 1080px;
  --padding: 2rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  margin-bottom: 1rem;
  max-width: none;
}

.subhead {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================
   LAYOUT
   ============================================ */

section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem var(--padding);
}

.divider {
  border: none;
  border-top: 0.5px solid var(--light-gray);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================
   NAV
   ============================================ */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem var(--padding);
  border-bottom: 0.5px solid var(--light-gray);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

.btn-nav {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--black) !important;
  border: 0.5px solid var(--black);
  padding: 0.55rem 1.2rem;
  transition: background 0.2s, color 0.2s !important;
}

.btn-nav:hover {
  background: var(--black);
  color: var(--bg) !important;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding-top: 6rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-image .photo-placeholder.tall {
  aspect-ratio: 3/4;
  width: 100%;
}

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

.trust-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.trust-row span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-row span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray);
  flex-shrink: 0;
}

/* ============================================
   INFO STRIP
   ============================================ */

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.info-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 0.5rem;
  max-width: none;
}

.info-value {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ============================================
   SERVICE SECTION
   ============================================ */

.service-header {
  margin-bottom: 3rem;
}

.service-desc {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 2rem;
}

.service-image .photo-placeholder.tall {
  aspect-ratio: 3/4;
  width: 100%;
}

.service-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
}

.service-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  padding-top: 0.15rem;
  max-width: none;
}

.service-item p:last-child {
  max-width: 560px;
}

/* ============================================
   WORK SECTION
   ============================================ */

.work {
  text-align: left;
}

.trust-statement {
  margin-bottom: 3rem;
  font-size: 1rem;
  max-width: 520px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-placeholder {
  aspect-ratio: 4/3;
  background: #F0F0F0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact h2 {
  color: var(--black);
}

.contact .subhead {
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 480px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}

.form-row input,
.form-row textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--light-gray);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}

.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--black);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--light-gray);
}

.btn-submit {
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--black);
  border: none;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  opacity: 0.75;
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.modal-visible {
  display: flex;
}

.modal {
  background: var(--bg);
  padding: 3rem;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal h2 {
  color: var(--black);
  margin-bottom: 0;
}

.modal p {
  max-width: none;
}

.modal-close {
  align-self: flex-start;
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--black);
  border: none;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-close:hover {
  opacity: 0.75;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.about-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-hero-text p {
  max-width: none;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-truck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-truck-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-truck-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-truck-text p {
  max-width: none;
}

.about-work {
  max-width: var(--max-width);
}

.about-work-body {
  max-width: 640px;
  margin-top: 0.5rem;
}

.about-work-body p {
  max-width: none;
  line-height: 1.8;
}

.about-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.about-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--black);
  max-width: none;
  line-height: 1.3;
}

.btn-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--black);
  padding: 0.8rem 2rem;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.75;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--padding);
  border-top: 0.5px solid var(--light-gray);
}

footer p {
  font-size: 0.8rem;
  color: var(--gray);
  max-width: none;
}

footer a {
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  :root {
    --padding: 1.25rem;
  }

  .nav-links a:not(.btn-nav) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .info-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service {
    grid-template-columns: 1fr;
  }

  .service-image {
    display: none;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    display: none;
  }

  .about-truck {
    grid-template-columns: 1fr;
  }

  .about-truck-image {
    display: none;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    flex-direction: column;
    gap: 1rem;
  }
}
