/*
Theme Name: Big Van
Theme URI: https://bigvan.co.nz
Author: Firefly Websites
Author URI: https://fireflywebsites.co.nz
Description: Custom theme for Big Van - Rod's man with a van service on the Kapiti Coast
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: bigvan
*/

/* ════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════ */
:root {
  --orange:       #F4500A;
  --orange-dark:  #C93D06;
  --orange-light: #FF7340;
  --navy:         #1A1F2E;
  --navy-mid:     #252C3F;
  --navy-light:   #2E3652;
  --yellow:       #F9C030;
  --yellow-dark:  #E0A818;
  --white:        #FFFFFF;
  --off-white:    #F7F5F0;
  --light-grey:   #ECEAE4;
  --mid-grey:     #B8B4AA;
  --text:         #1E1E1E;
  --text-muted:   #5A5A5A;
  --border:       #DDD9D0;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;

  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(26,31,46,0.12);
  --shadow-lg:    0 8px 48px rgba(26,31,46,0.18);

  --container:    1160px;
  --header-h:     72px;
}

/* ════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ════════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.4rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section--orange {
  background: var(--orange);
  color: var(--white);
}
.section--orange h1,
.section--orange h2,
.section--orange h3 { color: var(--white); }

.section--light { background: var(--off-white); }
.section--yellow { background: var(--yellow); }

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }

.strike {
  text-decoration: line-through;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  opacity: 0.45;
}

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,80,10,0.4);
}

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

.btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.3rem;
}

.btn--call {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  font-size: 1rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
}
.btn--call:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  text-decoration: none;
}

.site-logo .logo-big {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--orange);
  line-height: 1;
}
.site-logo .logo-van {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.site-nav a:hover,
.site-nav a.current { color: var(--white); }
.site-nav a:hover::after,
.site-nav a.current::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-mid);
  z-index: 99;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0;
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-call {
  margin-top: 1rem;
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  padding: 1rem;
  border-radius: var(--radius);
  border-bottom: none;
}

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

/* Decorative road stripe */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px,
    var(--yellow) 60px,
    transparent 60px,
    transparent 100px
  );
}

/* Decorative geometric shapes */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(244,80,10,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,80,10,0.15);
  border: 1px solid rgba(244,80,10,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-headline .line1 { display: block; }
.hero-headline .line2 {
  display: block;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.hero-trust-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(244,80,10,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--orange-light);
  flex-shrink: 0;
  text-align: center;
  line-height: 20px;
}

/* ════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════ */
.stats-bar {
  background: var(--orange);
  padding: 1.5rem 0;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.03em;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 4px solid var(--orange);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--orange);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   WHY ROD SECTION
════════════════════════════════════════════════ */
.why-rod {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.why-rod::before {
  content: 'ROD';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

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

.why-photo {
  position: relative;
}

.photo-placeholder {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}
.photo-placeholder .ph-icon { font-size: 3rem; opacity: 0.4; }

.why-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
}
.why-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.why-badge .badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.why-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.why-content .why-para {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.why-item::before {
  content: '';
  min-width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════
   AREA BANNER
════════════════════════════════════════════════ */
.area-banner {
  background: var(--yellow);
  padding: 2rem 0;
}

.area-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.area-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-chip {
  background: rgba(26,31,46,0.1);
  color: var(--navy);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(26,31,46,0.15);
}

/* ════════════════════════════════════════════════
   PRICING TABLE
════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.25s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--orange);
  border-width: 2px;
  border-top: 5px solid var(--orange);
}

.featured-tag {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.price-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.price-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
  letter-spacing: 0.02em;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  line-height: 1.6;
}

.includes-list {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2.5rem;
}

.includes-list h3 {
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}
.include-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ════════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: background 0.2s;
  user-select: none;
  gap: 1rem;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--off-white); color: var(--orange); }

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.faq-question.open .faq-icon {
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }

.contact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-child { border-bottom: none; padding-bottom: 0; }

.contact-detail-icon {
  font-size: 1.2rem;
  min-width: 32px;
  text-align: center;
  margin-top: 2px;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: 1.05rem;
  color: var(--white);
}
.contact-detail-text a:hover { color: var(--yellow); }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h3 { margin-bottom: 1.5rem; font-size: 1.8rem; }

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,80,10,0.1);
}
.form-group textarea { height: 140px; resize: vertical; }

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

/* ════════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0px,
    var(--orange) 40px,
    transparent 40px,
    transparent 60px
  );
}
.page-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; }

/* ════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  border-left: 4px solid var(--orange);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.trust-badge-icon { font-size: 1.2rem; }

/* ════════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════════ */
.cta-strip {
  background: var(--orange);
  padding: 3.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.cta-strip h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.cta-strip p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand .footer-logo .lo { color: var(--orange); }
.footer-brand .footer-logo .lv { color: var(--yellow); }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--orange); }

/* ════════════════════════════════════════════════
   FLOATING CALL BUTTON (mobile)
════════════════════════════════════════════════ */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(244,80,10,0.5);
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  animation: float-pulse 2.5s ease-in-out infinite;
}
@keyframes float-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(244,80,10,0.5); }
  50% { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(244,80,10,0.6); }
}

/* ════════════════════════════════════════════════
   SERVICE AREA PAGE BLOCK
════════════════════════════════════════════════ */
.area-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
}
.area-block h3 { color: var(--white); margin-bottom: 1rem; }
.area-block p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.suburb-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { gap: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .site-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .float-call { display: flex; }

  .grid-2, .grid-3, .grid-4,
  .why-grid, .contact-grid, .about-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .stats-inner { gap: 1.5rem; }
  .stat-item { flex: 1; min-width: 100px; }

  .contact-form-wrap { padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .area-inner { flex-direction: column; align-items: flex-start; }

  .hero { padding: 3.5rem 0 5rem; }
  .section { padding: 3.5rem 0; }

  .pricing-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }

  .why-badge { bottom: 0.5rem; right: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-trust { gap: 1rem; }
  .price-card { padding: 1.5rem; }
}

/* ════════════════════════════════════════════════
   WORDPRESS SPECIFIC FIXES
════════════════════════════════════════════════ */
.wp-block-image img { max-width: 100%; height: auto; }
.alignnone, .aligncenter, .alignleft, .alignright { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
