  /* ========================================
     Parrish Towing and Hauling — Styles
     Palette: Plum (#4A2C3A) + Amber (#C8956C)
     Fonts: Playfair Display + Inter
  ======================================== */

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

  :root {
    --plum: #4A2C3A;
    --plum-deep: #351F2A;
    --plum-light: #6B4254;
    --plum-pale: #F5EDEE;
    --amber: #C8956C;
    --amber-light: #D4A87E;
    --amber-pale: #FDF6F0;
    --cream: #FAF7F5;
    --white: #FFFFFF;
    --text: #2A1F24;
    --text-light: #6B5E65;
    --text-muted: #9B8E94;
    --border: #E8DDD9;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

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

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

  ul {
    list-style: none;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Skip Link */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 9999;
    font-size: 0.875rem;
    transition: top var(--transition);
  }
  .skip-link:focus {
    top: 16px;
  }

  /* ========================================
     HEADER
  ======================================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 20px rgba(74, 44, 58, 0.06);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum);
    letter-spacing: -0.01em;
  }
  .logo-icon {
    color: var(--amber);
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .logo-text::after {
    content: 'Towing & Hauling';
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* Nav */
  .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-list a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber);
    transition: width var(--transition);
  }
  .nav-list a:hover {
    color: var(--plum);
  }
  .nav-list a:hover::after {
    width: 100%;
  }

  .nav-cta {
    background: var(--plum);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    transition: background var(--transition), transform var(--transition) !important;
  }
  .nav-cta::after {
    display: none;
  }
  .nav-cta:hover {
    background: var(--plum-deep);
    transform: translateY(-1px);
  }

  /* Nav Toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }
  .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* ========================================
     HERO
  ======================================== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--cream);
  }
  .hero-pattern {
    position: absolute;
    inset: 0;
    color: var(--plum);
    pointer-events: none;
    z-index: 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 0;
  }

  .hero-content {
    max-width: 540px;
  }

  .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--amber);
  }

  .hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--amber);
  }

  .hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
  }
  .btn-primary {
    background: var(--plum);
    color: var(--white);
  }
  .btn-primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 44, 58, 0.25);
  }
  .btn-secondary {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--border);
  }
  .btn-secondary:hover {
    border-color: var(--plum);
    background: var(--plum-pale);
  }
  .btn-light {
    background: var(--white);
    color: var(--plum);
  }
  .btn-light:hover {
    background: var(--plum-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
  }
  .btn-full {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
  }
  .trust-item svg {
    color: var(--amber);
    flex-shrink: 0;
  }

  /* Hero Visual */
  .hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(74, 44, 58, 0.15);
  }
  .hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(74, 44, 58, 0.18);
    border: 4px solid var(--cream);
  }
  .hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--plum);
    box-shadow: 0 4px 16px rgba(74, 44, 58, 0.1);
    align-self: flex-start;
    margin-top: 16px;
  }
  .hero-badge svg {
    color: var(--amber);
  }

  /* ========================================
     SECTION COMMON
  ======================================== */
  .section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--plum);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .section-title.light {
    color: var(--white);
  }
  .section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 560px;
  }
  .section-subtitle.light {
    color: rgba(255,255,255,0.75);
  }

  section {
    padding: 100px 0;
  }

  /* ========================================
     SERVICES
  ======================================== */
  .services {
    background: var(--white);
  }
  .services .container > .section-label,
  .services .container > .section-title,
  .services .container > .section-subtitle {
    text-align: center;
  }
  .services .container > .section-subtitle {
    margin: 0 auto 56px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }
  .service-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(74, 44, 58, 0.08);
  }
  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--plum-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--plum);
    transition: all var(--transition);
  }
  .service-card:hover .service-icon {
    background: var(--plum);
    color: var(--white);
  }

  .service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 10px;
  }
  .service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
  }

  /* ========================================
     ABOUT
  ======================================== */
  .about {
    background: var(--cream);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
  .about-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(74, 44, 58, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 20px 24px;
    color: var(--white);
  }
  .about-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .about-stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-light);
  }
  .about-stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
  }

  .about-content .section-label {
    text-align: left;
  }
  .about-content .section-title {
    text-align: left;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 16px;
  }
  .about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
  }
  .value-item svg {
    color: var(--amber);
    flex-shrink: 0;
  }

  /* ========================================
     WHY US
  ======================================== */
  .why-us {
    background: var(--plum);
    padding: 100px 0;
  }
  .why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .why-us-content .section-label {
    color: var(--amber-light);
  }
  .why-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .why-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .why-number {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--amber);
    padding-top: 2px;
  }
  .why-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
  }
  .why-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
  }
  .why-us-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  }
  .why-us-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ========================================
     CTA BANNER
  ======================================== */
  .cta-banner {
    background: var(--amber);
    padding: 72px 0;
  }
  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .cta-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
  }
  .cta-actions {
    flex-shrink: 0;
  }

  /* ========================================
     CONTACT
  ======================================== */
  .contact {
    background: var(--white);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info .section-label,
  .contact-info .section-title {
    text-align: left;
  }
  .contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .contact-detail {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
  }
  .contact-detail dt {
    display: flex;
    align-items: flex-start;
    color: var(--amber);
    padding-top: 2px;
  }
  .contact-detail dd {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
  }
  .contact-detail a {
    color: var(--text);
    transition: color var(--transition);
    border-bottom: 1px solid transparent;
  }
  .contact-detail a:hover {
    color: var(--plum);
    border-bottom-color: var(--plum);
  }

  /* Form */
  .contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
  }
  .form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 28px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group-full {
    grid-column: 1 / -1;
  }
  .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted);
  }
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #E8F5E9;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2E7D32;
  }
  .form-success svg {
    color: #2E7D32;
    flex-shrink: 0;
  }

  /* ========================================
     FOOTER
  ======================================== */
  .footer {
    background: var(--plum-deep);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
  }
  .footer-brand .logo-icon {
    color: var(--amber-light);
  }
  .footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
  }
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links a {
    font-size: 0.875rem;
    transition: color var(--transition);
  }
  .footer-links a:hover {
    color: var(--amber-light);
  }
  .footer-contact address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .footer-contact a {
    transition: color var(--transition);
  }
  .footer-contact a:hover {
    color: var(--amber-light);
  }

  .footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
  }

  /* ========================================
     BACK TO TOP
  ======================================== */
  .back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--plum);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(74, 44, 58, 0.3);
    z-index: 999;
  }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .back-to-top:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
  }

  /* ========================================
     ANIMATIONS
  ======================================== */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========================================
     RESPONSIVE
  ======================================== */
  @media (max-width: 1024px) {
    .hero-grid {
      gap: 40px;
    }
    .about-grid,
    .why-us-inner,
    .contact-grid {
      gap: 48px;
    }
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      width: min(320px, 85vw);
      height: 100vh;
      background: var(--cream);
      flex-direction: column;
      justify-content: center;
      gap: 24px;
      padding: 40px;
      transform: translateX(100%);
      transition: transform var(--transition);
      box-shadow: -8px 0 32px rgba(0,0,0,0.1);
      z-index: 1000;
    }
    .nav-list.open {
      transform: translateX(0);
    }
    .nav-list a {
      font-size: 1.125rem;
    }
    .nav-cta {
      margin-top: 8px;
    }
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(42, 31, 36, 0.4);
      z-index: 999;
    }
    .nav-overlay.active {
      display: block;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      padding: 40px 0 60px;
    }
    .hero-content {
      max-width: 100%;
    }
    .hero-visual {
      max-width: 480px;
      margin: 0 auto;
    }
    .hero-image-accent {
      left: -16px;
      bottom: -20px;
    }

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

    .about-grid,
    .why-us-inner,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .about-image-wrap {
      order: -1;
    }
    .why-us-visual {
      order: -1;
    }

    .cta-inner {
      flex-direction: column;
      text-align: center;
    }

    .footer-inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    section {
      padding: 72px 0;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 16px;
    }
    .hero-actions {
      flex-direction: column;
    }
    .hero-actions .btn {
      justify-content: center;
      width: 100%;
    }
    .hero-trust {
      flex-direction: column;
      gap: 12px;
    }
    .contact-form-wrap {
      padding: 24px;
    }
  }
