:root {
  --cream: #FAF7F2;
  --deep-green: #2D4A3E;
  --gold: #C4975A;
  --charcoal: #2A2420;
  --mid-grey: #6B6057;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
  --font-ui: 'Jost', sans-serif;
  --max-width: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--cream); line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--deep-green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 1.5rem; }

/* ── Header ── */
.site-header {
  background: var(--deep-green);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; }
.logo { font-family: var(--font-heading); font-size: 1.4rem; color: var(--cream); font-weight: 600; white-space: nowrap; }
.logo:hover { color: var(--gold); }

.site-nav ul { list-style: none; padding: 0; display: flex; align-items: center; gap: 0.25rem; }
.site-nav a { font-family: var(--font-ui); font-size: 0.875rem; color: rgba(250,247,242,0.85); letter-spacing: 0.04em; padding: 0.4rem 0.75rem; border-radius: 3px; transition: color 0.2s, background 0.2s; }
.site-nav a:hover { color: var(--cream); background: rgba(250,247,242,0.1); }
.site-nav .btn-cta { background: var(--gold); color: var(--white) !important; padding: 0.5rem 1.1rem; font-weight: 500; margin-left: 0.5rem; border-radius: 3px; }
.site-nav .btn-cta:hover { background: #b5864a; color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ── Buttons ── */
.btn { display: inline-block; font-family: var(--font-ui); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; padding: 0.85rem 2rem; border-radius: 3px; transition: background 0.2s, color 0.2s; cursor: pointer; border: none; text-decoration: none; }
.btn-primary { background: var(--deep-green); color: var(--white); }
.btn-primary:hover { background: #1e3329; color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b5864a; color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--cream); color: var(--cream); padding: 0.75rem 2rem; }
.btn-outline:hover { background: var(--cream); color: var(--deep-green); }

/* ── Labels ── */
.label { font-family: var(--font-ui); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); display: block; margin-bottom: 0.75rem; }

/* ── Hero ── */
.hero { background: var(--deep-green); color: var(--cream); padding: 7rem 1.5rem 6rem; text-align: center; }
.hero h1 { color: var(--cream); margin-bottom: 1.25rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero .lead { font-size: 1.15rem; line-height: 1.7; color: rgba(250,247,242,0.82); max-width: 580px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page header (inner pages) ── */
.page-header { background: var(--deep-green); color: var(--cream); padding: 4rem 1.5rem; text-align: center; }
.page-header h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-header p { color: rgba(250,247,242,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── Section intro ── */
.section-intro { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p { color: var(--mid-grey); font-size: 1.05rem; }

/* ── Cards ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card { background: var(--white); border-radius: 6px; padding: 2rem; box-shadow: 0 1px 4px rgba(45,74,62,0.06), 0 4px 16px rgba(45,74,62,0.06); }
.card h3 { margin-bottom: 0.75rem; color: var(--deep-green); }
.card p { color: var(--mid-grey); font-size: 0.95rem; }

/* ── Service cards ── */
.service-card { background: var(--white); border-radius: 6px; padding: 2.5rem; border-top: 3px solid var(--gold); box-shadow: 0 1px 4px rgba(45,74,62,0.06), 0 4px 16px rgba(45,74,62,0.06); display: flex; flex-direction: column; }
.service-card .tag { font-family: var(--font-ui); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.75rem; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.service-card .price { font-family: var(--font-heading); font-size: 2rem; color: var(--deep-green); margin: 1rem 0; }
.service-card .description { color: var(--mid-grey); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 2rem; }
.service-card ul li { padding: 0.45rem 0 0.45rem 1.5rem; position: relative; color: var(--mid-grey); font-size: 0.9rem; border-bottom: 1px solid rgba(107,96,87,0.1); }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── Steps ── */
.steps-list { max-width: 760px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 2rem; margin-bottom: 3.5rem; align-items: start; }
.step:last-child { margin-bottom: 0; }
.step-num { width: 72px; height: 72px; background: var(--deep-green); color: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; flex-shrink: 0; }
.step-body h3 { margin-bottom: 0.5rem; padding-top: 0.5rem; }
.step-body p { color: var(--mid-grey); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(107,96,87,0.2); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.5rem 0; font-family: var(--font-heading); font-size: 1.1rem; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; line-height: 1.3; }
.faq-q .icon { flex-shrink: 0; width: 28px; height: 28px; border: 2px solid var(--deep-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--deep-green); font-style: normal; font-family: var(--font-ui); font-size: 1.2rem; line-height: 1; transition: transform 0.3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 1.5rem; color: var(--mid-grey); font-size: 0.975rem; line-height: 1.75; }

/* ── Formspree states ── */
.form-success-msg { background: rgba(45,74,62,0.07); border: 1px solid rgba(45,74,62,0.2); border-radius: 6px; padding: 2rem; text-align: center; margin-bottom: 1.5rem; }
.form-success-msg h3 { color: var(--deep-green); margin-bottom: 0.5rem; }
.form-success-msg p { color: var(--mid-grey); margin: 0; }
.form-error-msg { background: #fff5f5; border: 1px solid #fed7d7; border-radius: 4px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; color: #c53030; font-size: 0.9rem; }
.form-error-msg a { color: #c53030; text-decoration: underline; }
.field-error { display: block; color: #c53030; font-family: var(--font-ui); font-size: 0.78rem; margin-top: 0.35rem; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #c53030; }
button[data-fs-submit-btn]:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Contact form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-family: var(--font-ui); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid-grey); margin-bottom: 0.5rem; }
input[type="text"], input[type="email"], input[type="tel"], textarea, select { width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(107,96,87,0.3); border-radius: 4px; font-family: var(--font-body); font-size: 1rem; color: var(--charcoal); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--deep-green); box-shadow: 0 0 0 3px rgba(45,74,62,0.1); }
textarea { height: 150px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--mid-grey); margin-top: 1rem; font-family: var(--font-ui); }
.contact-info { background: var(--white); border-radius: 6px; padding: 2rem; box-shadow: 0 1px 4px rgba(45,74,62,0.06), 0 4px 16px rgba(45,74,62,0.06); }
.contact-info h3 { margin-bottom: 1.5rem; color: var(--deep-green); }
.info-item { margin-bottom: 1.25rem; }
.info-label { font-family: var(--font-ui); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.info-item p, .info-item a { color: var(--charcoal); font-size: 0.95rem; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: start; }
.photo-placeholder { background: rgba(45,74,62,0.08); border-radius: 6px; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; color: var(--mid-grey); font-family: var(--font-ui); font-size: 0.9rem; text-align: center; border: 2px dashed rgba(45,74,62,0.2); padding: 2rem; }
.values-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.values-list li { padding: 1rem 0; border-bottom: 1px solid rgba(107,96,87,0.15); display: flex; gap: 1rem; align-items: flex-start; color: var(--mid-grey); }
.values-list li strong { color: var(--charcoal); font-family: var(--font-heading); min-width: 130px; flex-shrink: 0; }

/* ── Suburb pages ── */
.suburb-header { background: var(--deep-green); color: var(--cream); padding: 4rem 1.5rem; }
.suburb-header .container { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.breadcrumb { font-family: var(--font-ui); font-size: 0.82rem; color: rgba(250,247,242,0.55); margin-bottom: 0.75rem; }
.breadcrumb a { color: rgba(250,247,242,0.75); }
.breadcrumb a:hover { color: var(--gold); }
.suburb-header h1 { color: var(--cream); margin-bottom: 1rem; }
.suburb-header .lead { color: rgba(250,247,242,0.82); font-size: 1.05rem; }
.suburb-tag { display: inline-flex; align-items: center; background: rgba(196,151,90,0.15); border: 1px solid rgba(196,151,90,0.4); color: #d4a96a; font-family: var(--font-ui); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.35rem 0.85rem; border-radius: 2px; margin-top: 1.5rem; }
.quick-facts { background: rgba(250,247,242,0.1); border: 1px solid rgba(250,247,242,0.15); border-radius: 6px; padding: 1.75rem; }
.quick-facts-title { font-family: var(--font-ui); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(250,247,242,0.5); margin-bottom: 1.25rem; font-weight: 500; }
.fact { margin-bottom: 1.25rem; }
.fact:last-child { margin-bottom: 0; }
.fact-label { font-family: var(--font-ui); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.fact-value { color: rgba(250,247,242,0.85); font-size: 0.92rem; }
.suburb-body { display: grid; grid-template-columns: 1fr 360px; gap: 5rem; align-items: start; padding: 5rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.suburb-main-text { font-size: 1.5rem; font-family: var(--font-heading); line-height: 1.35; color: var(--charcoal); margin-bottom: 1.5rem; }
.suburb-facts-card { background: var(--white); border-radius: 6px; padding: 2rem; box-shadow: 0 1px 4px rgba(45,74,62,0.06), 0 4px 16px rgba(45,74,62,0.06); }
.suburb-facts-card .quick-facts-title { color: var(--mid-grey); }
.suburb-facts-card .fact-value { color: var(--charcoal); }

/* ── CTA strip ── */
.cta-strip { background: var(--deep-green); color: var(--cream); padding: 5rem 1.5rem; text-align: center; }
.cta-strip h2 { color: var(--cream); margin-bottom: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-strip p { color: rgba(250,247,242,0.8); max-width: 480px; margin: 0 auto 2.5rem; }

/* ── Quote ── */
.quote-block { border-left: 3px solid var(--gold); padding: 1.25rem 1.75rem; background: var(--white); border-radius: 0 6px 6px 0; margin: 2.5rem 0; }
.quote-block p { font-style: italic; font-size: 1.1rem; color: var(--charcoal); margin: 0; }
.quote-block cite { display: block; font-family: var(--font-ui); font-size: 0.8rem; font-style: normal; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.75rem; }

/* ── Suburb pills ── */
.suburb-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.suburb-link { font-family: var(--font-ui); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--deep-green); border: 1px solid rgba(45,74,62,0.3); padding: 0.5rem 1rem; border-radius: 3px; transition: all 0.2s; }
.suburb-link:hover { background: var(--deep-green); color: var(--cream); border-color: var(--deep-green); }

/* ── Backgrounds ── */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ── Generic two-col ── */
.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .col-2 { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── Footer ── */
.site-footer { background: var(--charcoal); color: rgba(250,247,242,0.65); padding: 4rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(250,247,242,0.1); }
.footer-logo { font-family: var(--font-heading); font-size: 1.35rem; color: var(--cream); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-brand a { color: rgba(250,247,242,0.65); }
.footer-brand a:hover { color: var(--gold); }
.site-footer h4 { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; color: var(--cream); font-weight: 500; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer ul li a { color: rgba(250,247,242,0.65); font-size: 0.9rem; transition: color 0.2s; }
.site-footer ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-family: var(--font-ui); font-size: 0.78rem; color: rgba(250,247,242,0.38); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .suburb-header .container { grid-template-columns: 1fr; gap: 2rem; }
  .suburb-body { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--deep-green); padding: 1rem 1.5rem 2rem; box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .site-nav ul li a { display: block; padding: 0.85rem 0; border-bottom: 1px solid rgba(250,247,242,0.08); }
  .site-nav .btn-cta { margin: 1rem 0 0; text-align: center; display: block; }
  section { padding: 3.5rem 1.5rem; }
  .hero { padding: 4.5rem 1.5rem 4rem; }
  .page-header { padding: 3rem 1.5rem; }
  .suburb-header { padding: 3rem 1.5rem; }
  .suburb-body { padding: 3.5rem 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step { grid-template-columns: 52px 1fr; gap: 1.25rem; }
  .step-num { width: 52px; height: 52px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
}
