/*
Theme Name: RentAHord
Theme URI: https://rentahord.com.au/
Author: RentAHord
Author URI: https://rentahord.com.au/
Description: A lightweight one-page WordPress theme for the RentAHord construction hoarding website.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: Proprietary
Text Domain: rentahord
*/

/* ============================================================
   RentAHord — design tokens
   Brand pink #EE2A7B (from logo) on industrial neutrals.
   ============================================================ */
:root {
  /* Brand */
  --brand:        #EE2A7B;
  --brand-deep:   #C81866;
  --brand-soft:   #FFE4F0;

  /* Neutrals — warm industrial */
  --bg:           #F7F5F2;
  --surface:      #FFFFFF;
  --surface-2:    #EFEDE8;
  --ink:          #0E0F12;
  --ink-2:        #1A1C20;
  --text:         #14161A;
  --text-muted:   #5B5F66;
  --text-faint:   #8A8E94;
  --border:       #E2DFD9;
  --border-strong:#CFCBC2;

  /* Dark surfaces */
  --d-bg:         #0E0F12;
  --d-surface:    #16181C;
  --d-surface-2:  #1F2126;
  --d-border:     #2A2D33;
  --d-text:       #ECECEC;
  --d-text-muted: #9A9DA3;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Scale */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-md:   18px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  32px;
  --text-3xl:  44px;
  --text-4xl:  60px;
  --text-hero: clamp(40px, 6.4vw, 92px);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;

  --container: 1200px;
  --shadow-sm: 0 1px 2px rgba(14,15,18,.06), 0 1px 3px rgba(14,15,18,.04);
  --shadow:    0 8px 24px rgba(14,15,18,.08), 0 2px 6px rgba(14,15,18,.04);
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media (min-width: 768px) { .container { padding-inline: var(--space-7); } }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 8px 12px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h3 { font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
p { margin: 0; }
.lead { font-size: var(--text-md); color: var(--text-muted); line-height: 1.55; max-width: 60ch; }
.lead-light { color: rgba(255,255,255,.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 var(--space-4);
}
.eyebrow-light { color: var(--brand); }

.display-2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
}
.display-2.light { color: #fff; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: var(--text-base); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,.04); }
.section-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.section-dark .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,242,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(247,245,242,.95);
  border-bottom-color: var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  height: 72px;
}
.brand img { height: 28px; width: auto; }
.primary-nav {
  display: none;
  margin-left: auto;
  gap: var(--space-6);
}
.primary-nav a {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text); position: relative;
}
.primary-nav a:hover { color: var(--brand); }
.header-cta {
  display: none;
  align-items: center;
  gap: var(--space-4);
}
.phone {
  display: inline-flex; flex-direction: column; line-height: 1.1;
  font-family: var(--font-display);
}
.phone .phone-label {
  font-size: 11px; color: var(--text-muted); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.phone .phone-number {
  font-size: var(--text-md); font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
}
.phone:hover .phone-number { color: var(--brand); }

@media (min-width: 1024px) {
  .primary-nav, .header-cta { display: flex; }
}

.nav-toggle {
  margin-left: auto;
  background: none; border: 0;
  width: 40px; height: 40px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav[hidden] { display: none !important; }
.mobile-nav {
  display: flex; flex-direction: column;
  padding: var(--space-5);
  gap: var(--space-4);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav a {
  font-size: var(--text-md);
  font-weight: 500;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.btn { border: none; padding: 12px 20px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: var(--space-9) 0 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14,15,18,.94) 0%, rgba(14,15,18,.74) 46%, rgba(14,15,18,.32) 100%),
    linear-gradient(0deg, rgba(14,15,18,.98) 0%, rgba(14,15,18,.18) 48%, rgba(14,15,18,.58) 100%),
    url("assets/photos/hero-construction.jpg") center / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-12deg, rgba(255,255,255,.03) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 72% 28%, rgba(238,42,123,.32), transparent 26%);
  mix-blend-mode: screen;
  opacity: .72;
}
.hero-inner {
  position: relative; z-index: 1;
  padding-block: var(--space-7) var(--space-9);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.78);
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  margin-bottom: var(--space-6);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(238,42,123,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(238,42,123,0); } }

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 16ch;
  margin: 0 0 var(--space-5);
}
.hero-title .hl { color: var(--brand); }
.hero-sub {
  max-width: 56ch;
  font-size: var(--text-lg);
  color: rgba(255,255,255,.78);
  margin-bottom: var(--space-7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-8); }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
}
.hero-stats li {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-2xl);
  color: #fff; letter-spacing: -0.02em;
}
.hero-stats span { font-size: var(--text-sm); color: rgba(255,255,255,.6); }

/* Marquee */
.marquee {
  position: relative;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--brand-deep);
}
.marquee-track {
  display: inline-flex;
  gap: var(--space-5);
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee-track span { padding-inline: var(--space-2); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-eyebrow .dot { animation: none; }
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: var(--space-9) 0;
  scroll-margin-top: 96px;
}
@media (min-width: 768px) { .section { padding: var(--space-10) 0; } }

.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-dark p { color: rgba(255,255,255,.74); }

.section-head { max-width: 880px; margin-bottom: var(--space-8); }
.section-head .lead { margin-top: var(--space-4); }

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1.1fr; gap: var(--space-9); align-items: start; }
}
.col-left .display-2 { margin-bottom: 0; }
.col-right .lead { margin-bottom: var(--space-4); }
.col-right p { color: var(--text-muted); }

/* ============================================================
   Cards (Services)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--d-surface);
  border: 1px solid var(--d-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  background: var(--d-surface-2);
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f0ec;
  border-bottom: 1px solid var(--d-border);
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(14,15,18,.14));
  pointer-events: none;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.card:hover .card-media img {
  transform: scale(1.035);
}
.card-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-sm); color: var(--brand); letter-spacing: 0.08em;
  padding: 0 var(--space-6);
}
.card h3 {
  font-size: var(--text-xl);
  color: #fff;
  font-weight: 600;
  padding: 0 var(--space-6);
}
.card p {
  font-size: var(--text-base);
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  padding: 0 var(--space-6);
}

.tag-list {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-top: auto;
  padding: var(--space-3) var(--space-6) var(--space-6);
}
.tag-list li {
  font-size: var(--text-xs); font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(238,42,123,.08);
  border: 1px solid rgba(238,42,123,.25);
  color: #FBA5C7;
  letter-spacing: 0.02em;
}

/* ============================================================
   Process / Steps
   ============================================================ */
.section-process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247,245,242,.94), rgba(247,245,242,.98)),
    url("assets/photos/process-crew.jpg") center / cover no-repeat;
}
.section-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 78%, rgba(238,42,123,.12) 78% 100%),
    repeating-linear-gradient(-12deg, rgba(14,15,18,.035) 0 1px, transparent 1px 20px);
  pointer-events: none;
}
.section-process > .container {
  position: relative;
  z-index: 1;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  counter-reset: step;
}
@media (min-width: 720px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(5, 1fr); gap: var(--space-3); } }

.step {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.step h3 { font-size: var(--text-md); }
.step p { font-size: var(--text-sm); color: var(--text-muted); }

/* ============================================================
   Compliance
   ============================================================ */
.section-compliance {
  background: var(--surface-2);
  border-block: 1px solid var(--border);
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 600px) { .compliance-grid { grid-template-columns: 1fr 1fr; } }
.comp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.comp h3 {
  font-size: var(--text-md);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}
.comp p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   Industries
   ============================================================ */
.industries {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px)  { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .industries { grid-template-columns: repeat(3, 1fr); } }

.ind {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: rgba(255,255,255,.02);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: border-color .25s ease, background .25s ease;
}
.ind:hover { border-color: var(--brand); background: rgba(238,42,123,.05); }
.ind-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(238,42,123,.12);
  color: var(--brand);
}
.ind-icon svg { width: 24px; height: 24px; }
.ind h3 { font-size: var(--text-md); color: #fff; }
.ind p { font-size: var(--text-sm); }

/* ============================================================
   Quote
   ============================================================ */
.section-quote {
  padding: var(--space-9) 0;
  background:
    linear-gradient(90deg, rgba(247,245,242,.96), rgba(247,245,242,.86)),
    url("assets/photos/sydney-buildings.jpg") center / cover no-repeat;
  border-block: 1px solid var(--border);
}
.quote {
  margin: 0;
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}
.quote blockquote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 var(--space-5);
}
.quote figcaption {
  display: flex; flex-direction: column; gap: 2px;
  font-size: var(--text-sm);
}
.quote .who { font-weight: 600; color: var(--text); }
.quote .where { color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: var(--space-2); max-width: 880px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--brand); }
.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--brand);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA / Form
   ============================================================ */
.section-cta {
  background:
    linear-gradient(90deg, rgba(14,15,18,.98), rgba(14,15,18,.82)),
    radial-gradient(ellipse at top right, rgba(238,42,123,.18), transparent 55%),
    url("assets/photos/hero-construction.jpg") center / cover no-repeat,
    var(--ink);
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 960px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: var(--space-9); } }

.cta-copy .lead { margin-bottom: var(--space-6); }
.cta-direct {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.1);
}
.phone-lg .phone-number { font-size: var(--text-2xl); color: #fff; }
.phone-lg .phone-label { color: rgba(255,255,255,.6); }
.phone-lg:hover .phone-number { color: var(--brand); }
.email {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-md);
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
  align-self: flex-start;
}
.email:hover { color: var(--brand); border-color: var(--brand); }

.cta-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field label {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.field input, .field textarea {
  font: inherit;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 14px;
  font-size: var(--text-base);
  transition: border-color .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255,255,255,.06);
}
.cta-form .btn { align-self: flex-start; }
.form-fineprint { font-size: var(--text-xs); color: rgba(255,255,255,.5); margin: 0; }
.form-status {
  font-size: var(--text-sm); padding: 12px 14px; border-radius: var(--radius);
  background: rgba(95,217,151,.1); color: #6DDF9F;
  border: 1px solid rgba(95,217,151,.3);
}
.form-status.error {
  background: rgba(238,42,123,.1); color: #FBA5C7;
  border-color: rgba(238,42,123,.3);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: var(--space-9) 0 var(--space-5);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (min-width: 720px)  { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.foot-brand img { height: 30px; width: auto; margin-bottom: var(--space-4); filter: brightness(1.1); }
.foot-brand p { max-width: 32ch; font-size: var(--text-sm); color: rgba(255,255,255,.6); }
.foot-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--space-4);
}
.foot-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.foot-col a { font-size: var(--text-sm); color: rgba(255,255,255,.7); transition: color .15s; }
.foot-col a:hover { color: var(--brand); }
.foot-col li { font-size: var(--text-sm); color: rgba(255,255,255,.55); line-height: 1.5; }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
  letter-spacing: 0.02em;
}
@media (min-width: 720px) {
  .footer-meta { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
/*
Theme Name: RentAHord
Theme URI: https://rentahord.com.au/
Author: RentAHord
Author URI: https://rentahord.com.au/
Description: Upload-ready WordPress theme for RentAHord Sydney construction hoarding hire and installation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: rentahord
*/
