/* ===========================================================
   Renew & Repair — Pakenham Handyman
   Palette: forest pine, burnt terracotta, ochre, warm cream
   =========================================================== */

:root {
  --pine: #1f3d2e;
  --pine-dark: #142a1f;
  --pine-light: #2c5340;
  --terracotta: #c4622d;
  --terracotta-dark: #a34f22;
  --ochre: #d9a441;
  --cream: #faf5ec;
  --cream-deep: #f0e6d2;
  --charcoal: #2a2620;
  --stone: #6b6459;
  --white: #ffffff;
  --border: #e4d9c3;

  --font-head: 'Bitter', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 6px;
  --shadow: 0 4px 18px rgba(31, 61, 46, 0.12);
  --shadow-lg: 0 10px 34px rgba(31, 61, 46, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--pine-dark);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--terracotta-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

section { padding: 72px 0; }
section.tight { padding: 44px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}
.btn-outline-dark {
  background: transparent;
  color: var(--pine-dark);
  border-color: var(--pine-dark);
}
.btn-outline-dark:hover { background: var(--pine-dark); color: var(--white); text-decoration:none; }
.btn-block { width: 100%; text-align: center; }

/* ---------- Header ---------- */
.top-strip {
  background: var(--pine-dark);
  color: var(--cream-deep);
  font-size: 0.85rem;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-strip a { color: var(--ochre); }

header.site-header {
  background: var(--pine);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.brand-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.1;
}
.brand-text .brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ochre);
}
.brand:hover { text-decoration: none; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  color: var(--cream-deep);
  font-weight: 500;
  font-size: 0.96rem;
}
nav.main-nav a:hover { color: var(--ochre); text-decoration: none; }
nav.main-nav a.active { color: var(--ochre); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  margin-top: 14px;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  color: var(--charcoal);
  border-radius: 4px;
  font-size: 0.92rem;
}
.dropdown a:hover { background: var(--cream); color: var(--terracotta-dark); text-decoration: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-dark) 100%);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(196,98,45,0.25) 0%, rgba(196,98,45,0) 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(217,164,65,0.16);
  color: var(--ochre);
  border: 1px solid rgba(217,164,65,0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); }
.hero p.lead { font-size: 1.15rem; color: var(--cream-deep); max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-card {
  background: var(--white);
  color: var(--charcoal);
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { margin-bottom: 14px; font-size: 1.1rem; }
.hero-card ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.hero-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
}
.hero-card ul li:last-child { border-bottom: none; }
.tick { color: var(--terracotta); font-weight: 700; }

.page-hero {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-dark) 100%);
  color: var(--white);
  padding: 60px 0 66px;
}
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero p.lead { color: var(--cream-deep); max-width: 60ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: var(--cream-deep); margin-bottom: 16px; }
.breadcrumb a { color: var(--ochre); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  padding: 22px 24px;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pine);
}
.trust-bar span { display: flex; align-items: center; gap: 8px; }

/* ---------- Cards / grids ---------- */
.section-head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.section-head .eyebrow-dark {
  color: var(--terracotta-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--cream-deep);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--stone); font-size: 0.95rem; margin-bottom: 14px; }
.card-link { font-weight: 600; font-size: 0.92rem; }
.card-link::after { content: " →"; }

.photo-block {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, var(--cream-deep), var(--cream-deep) 12px, var(--border) 12px, var(--border) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--pine);
  color: var(--white);
  border-radius: 12px;
  padding: 34px;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 6px;
}
.testimonial p.quote { font-size: 1.05rem; color: var(--cream-deep); }
.testimonial .author { font-weight: 700; color: var(--ochre); margin-top: 14px; }
.testimonial-placeholder {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 34px;
  color: var(--stone);
  font-size: 0.92rem;
  background: var(--cream-deep);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--ochre);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--pine); }
.faq-item p { color: var(--stone); margin-bottom: 0; }

/* ---------- Service area list ---------- */
.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.suburb-list li {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pine);
}

/* ---------- Two-col content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-media { order: 1; }
.checklist { list-style: none; padding: 0; margin: 20px 0; }
.checklist li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--charcoal);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--terracotta);
  font-weight: 700;
}

/* ---------- Blog ---------- */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-meta { font-size: 0.8rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; font-weight: 600; }
.blog-tag {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--terracotta-dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}
article.post {
  max-width: 760px;
  margin: 0 auto;
}
article.post h2 { margin-top: 1.4em; }
article.post p { color: var(--charcoal); font-size: 1.03rem; }
.post-callout {
  background: var(--cream-deep);
  border-left: 4px solid var(--terracotta);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 26px 0;
  font-size: 0.96rem;
}
.related-links {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 30px 0;
}
.related-links h4 { margin-bottom: 12px; font-size: 1rem; }
.related-links ul { margin: 0; padding-left: 20px; }
.related-links li { margin-bottom: 6px; }
.external-note { font-size: 0.82rem; color: var(--stone); margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--cream);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--pine-dark);
  color: var(--cream-deep);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: var(--ochre);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-grid a { color: var(--cream-deep); }
.footer-grid a:hover { color: var(--ochre); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(250,245,236,0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse .col-text, .two-col.reverse .col-media { order: initial; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { gap: 8px; }
  .nav-cta .nav-phone { display: none; }
  .nav-wrap { flex-wrap: nowrap; gap: 8px; }
  .brand-mark { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 8px; }
  .brand-text .brand-name { font-size: 1.02rem; white-space: nowrap; }
  .brand-text .brand-tag { font-size: 0.62rem; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.85rem; white-space: nowrap; }
  .top-strip { font-size: 0.72rem; }
  header.site-header.open nav.main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pine);
    padding: 18px 24px 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }
  header.site-header.open .has-dropdown:hover .dropdown { position: static; box-shadow: none; margin-top: 8px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .top-strip .container { justify-content: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
