/*
Theme Name: Phantom Lawn + Haul
Theme URI: https://phantomlawn.com
Author: Copilot
Description: Custom WordPress theme for Phantom Lawn + Haul.
Version: 1.0.0
Text Domain: phantom
*/

:root {
  --bg: #f5f2ed;
  --panel: #f9f7f4;
  --ink: #11202f;
  --muted: #5e6470;
  --line: rgba(17, 32, 47, 0.12);
  --brand: #1f5d8f;
  --brand-dark: #163d5d;
  --brand-soft: #eaf2f8;
  --accent: #d7a63d;
  --accent-soft: #f4ebd3;
  --success: #2f6f4f;
  --shadow: 0 18px 40px rgba(17, 32, 47, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 237, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 200px;
}
.brand img {
  max-height: 48px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-actions a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  transition: 0.2s ease;
}
.nav-actions a:hover {
  transform: translateY(-1px);
}
.nav-actions .primary {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.hero {
  padding: 64px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
}
.hero-actions .primary {
  background: var(--brand);
  color: white;
}
.hero-actions .secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.3);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  padding: 18px 0;
}
.trust-item {
  font-weight: 800;
  color: var(--ink);
}
.section {
  padding: 76px 0;
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.35);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(17, 32, 47, 0.03);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card .content {
  padding: 22px 20px 24px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.audience-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.audience-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.audience-card .copy {
  padding: 28px 26px;
}
.audience-card .copy h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.audience-card .copy p,
.audience-card .copy li {
  color: var(--muted);
}
.audience-card .copy ul {
  padding-left: 18px;
  margin: 14px 0 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.about-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}
.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.04rem;
}
.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: white;
  border-radius: 28px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta-band h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  letter-spacing: -0.04em;
}
.cta-band .row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-band a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 800;
}
.cta-band .primary {
  background: white;
  color: var(--brand-dark);
  border-color: white;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.project-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: white;
}
.project-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.project-card .copy {
  padding: 20px 22px 24px;
}
.project-card .copy h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}
.project-card .copy p {
  margin: 0;
  color: var(--muted);
}
.site-footer {
  background: #0d1d2b;
  color: white;
  padding: 40px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
}
.footer-brand img {
  max-height: 42px;
  margin-bottom: 18px;
}
.footer-brand p,
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.8);
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-links h4,
.footer-contact h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.credit {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}
@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .about-grid,
  .projects-grid,
  .footer-grid,
  .services-grid,
  .trustbar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-nav {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
}
@media (max-width: 700px) {
  .hero-grid,
  .split-grid,
  .about-grid,
  .projects-grid,
  .services-grid,
  .footer-grid,
  .trustbar-inner,
  .audience-card {
    grid-template-columns: 1fr;
  }
  .hero-visual img { height: 360px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .nav-wrap { min-height: 72px; }
}
