/* === MASSAGE SERVICES FOR YOU — MAIN STYLESHEET === */
:root {
  --green-dark: #1a4731;
  --green: #2d7a4f;
  --green-light: #f0f7f3;
  --green-mid: #e8f5ee;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --radius: 0.6rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --transition: 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); line-height: 1.2; font-weight: bold; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font-sans); font-size: 1rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── NAVIGATION ── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-serif); font-size: 1.1rem; font-weight: bold; color: var(--green-dark); text-decoration: none; }
.nav-brand img { width: 32px; height: 32px; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a { padding: 0.4rem 0.75rem; border-radius: var(--radius); color: var(--text-muted); font-size: 0.875rem; font-weight: 500; transition: color var(--transition), background var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); background: var(--green-mid); }
.nav-cta { padding: 0.5rem 1.1rem; background: var(--green-dark); color: var(--white) !important; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; transition: background var(--transition); }
.nav-cta:hover { background: var(--green) !important; color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: none; flex-direction: column; gap: 0.25rem; padding: 0.75rem 1.25rem 1.25rem; border-top: 1px solid var(--border); background: var(--white); }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 0.6rem 0.75rem; border-radius: var(--radius); color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
  .nav-mobile a:hover { background: var(--green-mid); color: var(--green-dark); }
  .nav-mobile .nav-cta { text-align: center; background: var(--green-dark); color: var(--white) !important; margin-top: 0.5rem; padding: 0.65rem 1rem; }
}

/* ── HERO ── */
.hero { position: relative; height: 60vh; min-height: 400px; max-height: 640px; overflow: hidden; background: var(--green-dark); }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
.hero-content { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 3.5rem; }
.hero-content h1 { font-size: clamp(1.8rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 0.75rem; max-width: 700px; line-height: 1.15; }
.hero-content p { color: rgba(255,255,255,0.82); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 520px; line-height: 1.6; margin-bottom: 1.5rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.5rem; border-radius: var(--radius-full); font-weight: 600; font-size: 0.9375rem; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--green-dark); color: var(--white); }
.btn-primary:hover { background: var(--green); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--green-dark); color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); }
.btn-ghost-white { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); color: var(--white); backdrop-filter: blur(4px); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--green-mid); color: var(--green-dark); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.875rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--green-dark); color: var(--white); padding: 0.875rem 1.25rem; }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.88); white-space: nowrap; }
.trust-icon { font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg); padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--green-dark); color: var(--white); padding: 5rem 0; }
.section-header { margin-bottom: 2.5rem; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
.section-lead { color: var(--text-muted); max-width: 540px; font-size: 1rem; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.view-all { font-size: 0.875rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 0.3rem; white-space: nowrap; }
.view-all:hover { color: var(--green-dark); }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

/* ── LISTING CARD ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card.featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), var(--shadow-sm); }
.card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg); position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-badges { position: absolute; top: 0.6rem; left: 0.6rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.badge { font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: var(--radius-full); }
.badge-featured { background: var(--green-dark); color: var(--white); }
.badge-price { background: rgba(0,0,0,0.5); color: var(--white); backdrop-filter: blur(4px); }
.card-body { padding: 1.1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 0.35rem; }
.card-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: bold; margin-bottom: 0.4rem; color: var(--text); line-height: 1.3; }
.card-suburb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.25rem; }
.card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.75rem; }
.card-tag { font-size: 0.7rem; background: var(--bg); border: 1px solid var(--border); color: var(--text-muted); padding: 0.2rem 0.55rem; border-radius: var(--radius-full); }
.card-footer { display: flex; gap: 0.5rem; margin-top: auto; }
.card-footer .btn { font-size: 0.8rem; padding: 0.4rem 0.875rem; flex: 1; justify-content: center; }
.card-hours { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.5rem; }

/* ── CITY CARDS ── */
.city-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 16/9; background: var(--bg); display: block; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition); }
.city-card:hover { box-shadow: var(--shadow-lg); }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.city-card:hover img { transform: scale(1.04); }
.city-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.city-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; color: var(--white); }
.city-card-state { font-size: 0.75rem; color: rgba(255,255,255,0.68); margin-bottom: 0.3rem; }
.city-card-title { font-family: var(--font-serif); font-size: 2rem; font-weight: bold; margin-bottom: 0.4rem; }
.city-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.5; }
.city-card-link { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.82); margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.3rem; }

/* ── CATEGORY CARDS ── */
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1rem; text-align: center; transition: all var(--transition); }
.cat-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.cat-name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.3rem; color: var(--text); }
.cat-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── ARTICLE CARDS ── */
.article-card { display: block; }
.article-card-img { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); margin-bottom: 1rem; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: bold; margin-bottom: 0.4rem; color: var(--text); line-height: 1.35; transition: color var(--transition); }
.article-card:hover .article-card-title { color: var(--green); }
.article-card-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card-link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.875rem; font-weight: 600; color: var(--green); margin-top: 0.6rem; }

/* ── SUBURB HERO ── */
.suburb-hero { position: relative; height: 48vh; min-height: 320px; max-height: 480px; overflow: hidden; background: var(--green-dark); }
.suburb-hero img { width: 100%; height: 100%; object-fit: cover; }
.suburb-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.25) 55%, transparent 100%); }
.suburb-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.suburb-hero-content .breadcrumb { margin-bottom: 0.75rem; }
.suburb-hero-content h1 { font-size: clamp(1.6rem, 3.5vw, 2.75rem); color: var(--white); }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
.breadcrumb-light { color: var(--text-muted); }
.breadcrumb-light a { color: var(--text-muted); }
.breadcrumb-light a:hover { color: var(--green); }
.breadcrumb-light .breadcrumb-sep { color: var(--border); }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 3rem 0; }
.content-intro { max-width: 760px; font-size: 1.0625rem; color: var(--text-muted); line-height: 1.75; }
.info-box { background: var(--green-light); border: 1px solid var(--green); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 1.5rem 0; }
.info-box h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.two-col-content { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.sidebar { }
.sidebar-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.25rem; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--green-dark); }
@media (max-width: 900px) { .two-col-content { grid-template-columns: 1fr; } .sidebar { order: -1; } }

/* ── DIRECTORY ── */
.dir-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .dir-layout { grid-template-columns: 1fr; } }
.filters-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; position: sticky; top: 80px; }
.filters-panel h2 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.filter-input { width: 100%; padding: 0.55rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; color: var(--text); background: var(--white); outline: none; transition: border var(--transition); }
.filter-input:focus { border-color: var(--green); }
.filter-select { width: 100%; padding: 0.55rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; color: var(--text); background: var(--white); outline: none; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }
.filter-reset { width: 100%; padding: 0.5rem; background: none; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.8125rem; color: var(--text-muted); cursor: pointer; transition: all var(--transition); margin-top: 0.5rem; }
.filter-reset:hover { border-color: var(--green); color: var(--green); }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.5rem; }
.results-count { font-size: 0.875rem; color: var(--text-muted); }
.results-count strong { color: var(--text); }
#dir-grid { }
.mobile-filter-btn { display: none; width: 100%; padding: 0.65rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; cursor: pointer; margin-bottom: 1rem; }
@media (max-width: 768px) { .mobile-filter-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .filters-panel { display: none; position: static; } .filters-panel.open { display: block; } }
.no-results { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.no-results span { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

/* ── PAGE HERO (non-image) ── */
.page-hero { background: var(--green-dark); color: var(--white); padding: 3.5rem 0 3rem; }
.page-hero-eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 600px; font-size: 1.0625rem; line-height: 1.65; }

/* ── ARTICLE PAGE ── */
.article-hero { position: relative; height: 44vh; min-height: 280px; max-height: 440px; overflow: hidden; border-radius: 0; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; max-width: 1100px; margin: 0 auto; padding: 3rem 1.25rem; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }
.article-body h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--green-dark); }
.article-body h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.article-body p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--text); }
.article-body p.lead { font-size: 1.125rem; color: var(--text-muted); border-left: 3px solid var(--green); padding-left: 1.25rem; margin-bottom: 2rem; }
.article-body ul { margin-bottom: 1.25rem; padding-left: 1.5rem; list-style: disc; }
.article-body ul li { margin-bottom: 0.4rem; color: var(--text); }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.article-callout { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin: 1.75rem 0; }
.article-callout h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.article-callout ul { padding-left: 1.25rem; list-style: disc; }
.article-callout ul li { margin-bottom: 0.35rem; font-size: 0.9375rem; color: var(--text-muted); }
.article-callout ul li strong { color: var(--text); }
.callout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .callout-grid { grid-template-columns: 1fr; } }
.article-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.article-sidebar-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.25rem; }
.article-sidebar-card h3 { font-size: 0.9375rem; margin-bottom: 0.75rem; color: var(--green-dark); }
.article-sidebar-card ul { list-style: disc; padding-left: 1.1rem; }
.article-sidebar-card ul li { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.article-sidebar-card a { color: var(--green); font-size: 0.85rem; }

/* ── CTA SECTION ── */
.cta-section { background: var(--green-dark); color: var(--white); text-align: center; padding: 5rem 1.25rem; }
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2.25rem; font-size: 1.0625rem; line-height: 1.65; }

/* ── ADVERTISE ── */
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.benefit-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.benefit-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: border-color var(--transition); }
.pricing-card.featured-pricing { border-color: var(--green); }
.pricing-price { font-size: 2.25rem; font-family: var(--font-serif); font-weight: bold; color: var(--green-dark); margin: 0.5rem 0; }
.pricing-period { font-size: 0.875rem; color: var(--text-muted); }
.pricing-features { margin: 1.25rem 0; }
.pricing-features li { font-size: 0.9rem; color: var(--text-muted); padding: 0.3rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: start; gap: 0.4rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 0.75rem; overflow: hidden; }
.faq-q { padding: 1.1rem 1.25rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.9375rem; background: var(--white); }
.faq-q:hover { background: var(--bg); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--text-muted); transition: transform var(--transition); flex-shrink: 0; }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.65rem 0.875rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.9375rem; color: var(--text); background: var(--white); outline: none; transition: border var(--transition); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,122,79,0.12); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── FOOTER ── */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-serif); font-size: 1.15rem; font-weight: bold; color: var(--white); margin-bottom: 0.6rem; }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 0.875rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-bar a { color: rgba(255,255,255,0.38); }
.footer-bar a:hover { color: rgba(255,255,255,0.65); }

/* ── UTILITIES ── */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--green); }
.text-sm { font-size: 0.875rem; }
.font-serif { font-family: var(--font-serif); }
.rounded-full { border-radius: var(--radius-full); }
.pill { display: inline-block; background: var(--green-mid); color: var(--green-dark); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.65rem; border-radius: var(--radius-full); }
.alert { background: var(--green-light); border: 1px solid var(--green); border-radius: var(--radius); padding: 0.875rem 1.1rem; font-size: 0.9rem; color: var(--green-dark); margin-bottom: 1.25rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.loading { text-align: center; color: var(--text-muted); padding: 3rem; }
.suburb-sections { max-width: 760px; }
.suburb-section { margin-bottom: 2.25rem; }
.suburb-section h2 { font-size: 1.35rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.suburb-section p { color: var(--text-muted); line-height: 1.75; }
