/* ==========================================================================
   Fallow & Blade — stylesheet
   ========================================================================== */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Design tokens */
:root {
  --fb-black:     #2D2D2D;
  --fb-gold:      #C4801A;
  --fb-gold-dark: #a86b1a;
  --fb-off-white: #F8F5F0;
  --fb-white:     #FFFFFF;
  --fb-muted:     #6B6B6B;
  --fb-border:    #E0DDD8;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-height: 150px;
  --max-width:  1140px;
  --narrow:      880px;
}

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

body {
  background-color: var(--fb-off-white);
  color: var(--fb-black);
  font-family: var(--font-sans);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { color: var(--fb-gold); }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fb-black);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

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

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

em { font-style: italic; }
strong { font-weight: 600; }

/* Section label — uppercase eyebrow above heading */
.label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fb-gold);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: var(--narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.fb-section {
  padding: 5rem 0;
}

.fb-section--cream { background-color: var(--fb-off-white); }
.fb-section--white { background-color: var(--fb-white); }
.fb-section--dark  { background-color: var(--fb-black); color: var(--fb-white); }
.fb-section--dark h1,
.fb-section--dark h2,
.fb-section--dark h3 { color: var(--fb-white); }

.fb-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.fb-section__header p {
  color: var(--fb-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.fb-section--dark .fb-section__header p { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   Navigation / Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fb-white);
  border-bottom: 1px solid var(--fb-border);
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
}

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

.site-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img { height: 140px; width: auto; display: block; }
.site-logo:hover { opacity: 0.85; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fb-black);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--fb-gold); }

.site-nav a.active { color: var(--fb-gold); }

/* "Get in Touch" nav CTA */
.site-nav .nav-cta a {
  display: inline-block;
  background: var(--fb-gold);
  color: var(--fb-white);
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.site-nav .nav-cta a:hover { background: var(--fb-gold-dark); color: var(--fb-white); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--fb-black);
  padding: 0.25rem;
}

/* ==========================================================================
   Hero section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 85vh;
  background-color: var(--fb-black);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero--with-image {
  /* background-image set inline per page as:
     linear-gradient(...), url('image.jpg') */
}

.hero__inner {
  max-width: 660px;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fb-gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--fb-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Page hero (internal pages — shorter) */
.page-hero {
  background-color: var(--fb-black);
  padding: 4rem 0 3.5rem;
  text-align: left;
}

.page-hero h1 { color: var(--fb-white); margin-bottom: 0.75rem; }

.page-hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--fb-gold);
  color: var(--fb-white);
  border-color: var(--fb-gold);
}

.btn--primary:hover {
  background: var(--fb-gold-dark);
  border-color: var(--fb-gold-dark);
  color: var(--fb-white);
}

.btn--outline {
  background: transparent;
  color: var(--fb-gold);
  border-color: var(--fb-gold);
}

.btn--outline:hover {
  background: var(--fb-gold);
  color: var(--fb-white);
}

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

.btn--outline-white:hover {
  background: var(--fb-white);
  color: var(--fb-black);
}

/* ==========================================================================
   Service cards
   ========================================================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--fb-white);
  border: 1px solid var(--fb-border);
  border-top: 3px solid var(--fb-gold);
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fb-black);
}

.card__body {
  font-size: 0.95rem;
  color: var(--fb-muted);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   Steps (How It Works)
   ========================================================================== */

.steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--fb-border);
}

.step:last-child { border-bottom: none; padding-bottom: 0; }

.step__num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--fb-gold);
  color: var(--fb-white);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__content h3 { margin-bottom: 0.5rem; }
.step__content p { color: var(--fb-muted); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials { display: grid; gap: 1.5rem; }

.testimonial {
  background: var(--fb-white);
  border-left: 4px solid var(--fb-gold);
  padding: 1.5rem 2rem;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--fb-black);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.testimonial__attr {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fb-muted);
}

/* ==========================================================================
   Invoice / code block
   ========================================================================== */

.invoice-block {
  background: #f4f4f2;
  border: 1px solid var(--fb-border);
  border-radius: 2px;
  padding: 1.75rem 2rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  line-height: 1.8;
  white-space: pre;
  overflow-x: auto;
  color: var(--fb-black);
}

/* ==========================================================================
   Rate card
   ========================================================================== */

.rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.rate-item {
  background: var(--fb-white);
  border: 1px solid var(--fb-border);
  border-top: 3px solid var(--fb-gold);
  padding: 1.75rem;
  text-align: center;
}

.rate-item__amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fb-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.rate-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fb-black);
  display: block;
  margin-bottom: 0.25rem;
}

.rate-item__note {
  font-size: 0.8rem;
  color: var(--fb-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: var(--narrow); margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--fb-border);
  padding: 1.5rem 0;
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fb-black);
  margin: 0;
}

.faq-item__question button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fb-black);
}

.faq-item__question button:hover { color: var(--fb-gold); }

.faq-item__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--fb-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb-gold);
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  color: var(--fb-muted);
  padding-top: 0.75rem;
}

.faq-item.is-open .faq-item__answer { display: block; }
.faq-item__answer p { margin-bottom: 0.75rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery__item { cursor: pointer; }

.gallery__img-wrap { overflow: hidden; aspect-ratio: 4/3; }

.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}

.gallery__item:hover .gallery__img-wrap img { transform: scale(1.03); }

.gallery__caption {
  font-size: 0.8rem;
  color: var(--fb-muted);
  margin-top: 0.5rem;
  padding: 0 0.25rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }

.lightbox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  width: 100%;
}

.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

.lightbox__caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.75rem;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}
.lightbox__close:hover { opacity: 1; }

/* ==========================================================================
   Education hub article cards
   ========================================================================== */

.edu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.edu-card {
  background: var(--fb-white);
  border: 1px solid var(--fb-border);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.edu-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: var(--fb-gold);
  color: inherit;
}

.edu-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fb-gold);
  margin-bottom: 0.6rem;
}

.edu-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fb-black);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.edu-card__desc { font-size: 0.92rem; color: var(--fb-muted); margin: 0; }

/* ==========================================================================
   Resource list (useful resources, local orgs)
   ========================================================================== */

.resource-list { list-style: none; padding: 0; }

.resource-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--fb-border);
}

.resource-item:last-child { border-bottom: none; }

.resource-item__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.resource-item__url {
  font-size: 0.85rem;
  color: var(--fb-gold);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.resource-item__url:hover { text-decoration: underline; }

.resource-item__desc { font-size: 0.95rem; color: var(--fb-muted); margin: 0; }

/* ==========================================================================
   Service area map placeholder
   ========================================================================== */

.map-placeholder {
  background: var(--fb-border);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb-muted);
  font-size: 0.9rem;
  border-radius: 2px;
  margin-top: 2rem;
}

/* ==========================================================================
   Suburb list links
   ========================================================================== */

.suburb-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.suburb-links li a {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--fb-white);
  border: 1px solid var(--fb-border);
  border-left: 3px solid var(--fb-gold);
  text-decoration: none;
  color: var(--fb-black);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.suburb-links li a:hover {
  background: var(--fb-gold);
  color: var(--fb-white);
  border-left-color: var(--fb-gold);
}

/* ==========================================================================
   Contact form
   ========================================================================== */

.contact-form { max-width: 640px; }

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--fb-black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--fb-border);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--fb-black);
  background: var(--fb-white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fb-gold);
}

.form-group textarea { resize: vertical; min-height: 140px; }

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

.form-note {
  font-size: 0.8rem;
  color: var(--fb-muted);
  margin-top: 0.25rem;
}

/* Form status messages */
#form-success, #form-error { padding: 1.25rem; border-radius: 2px; margin-top: 1rem; }
#form-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
#form-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ==========================================================================
   Documents list
   ========================================================================== */

.doc-list { list-style: none; padding: 0; }

.doc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--fb-border);
}

.doc-item:last-child { border-bottom: none; }

.doc-item__icon { color: var(--fb-gold); font-size: 1.4rem; flex-shrink: 0; }

.doc-item__label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.doc-item__note { font-size: 0.85rem; color: var(--fb-muted); }

/* ==========================================================================
   Two-column layout (text + aside)
   ========================================================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.sidebar {
  background: var(--fb-white);
  border: 1px solid var(--fb-border);
  border-top: 3px solid var(--fb-gold);
  padding: 1.75rem;
}

.sidebar__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sidebar__list { list-style: none; padding: 0; }
.sidebar__list li { padding: 0.4rem 0; border-bottom: 1px solid var(--fb-border); font-size: 0.9rem; }
.sidebar__list li:last-child { border-bottom: none; }

/* ==========================================================================
   Inline prose helpers
   ========================================================================== */

.prose { max-width: var(--narrow); }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.6rem; }
.prose ul, .prose ol { margin-bottom: 1rem; }
.prose li { color: var(--fb-muted); }

.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: baseline; gap: 0.6rem; }
.check-list li::before { content: '\2022'; color: var(--fb-gold); font-weight: 700; flex-shrink: 0; }
.check-list--divided li { padding-top: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--fb-border); color: var(--fb-muted); }
.check-list--divided li:last-child { border-bottom: none; }

.text-muted { color: var(--fb-muted); }
.text-gold  { color: var(--fb-gold); }
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }

/* Anchor link offset for sticky header */
[id] { scroll-margin-top: calc(var(--nav-height) + 1.5rem); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--fb-black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

.footer-brand__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fb-white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--fb-gold); }

.footer-col__heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fb-white);
  margin-bottom: 1rem;
}

.footer-col__links {
  list-style: none;
  padding: 0;
}

.footer-col__links li { margin-bottom: 0.5rem; }

.footer-col__links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col__links a:hover { color: var(--fb-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; }
  .sidebar { margin-top: 0; }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--fb-white);
    border-bottom: 1px solid var(--fb-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .site-nav.is-open { display: flex; }

  .site-nav li { width: 100%; }

  .site-nav a {
    display: block;
    padding: 0.85rem 1.5rem;
    width: 100%;
  }

  .site-nav .nav-cta a {
    margin: 0.5rem 1.5rem;
    display: inline-block;
    width: auto;
  }

  .nav-toggle { display: block; }

  .site-header { position: relative; }

  .hero { min-height: 70vh; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .fb-section { padding: 3.5rem 0; }

  .page-hero { padding: 3rem 0; }

  .rates { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .rates { grid-template-columns: 1fr; }
  .suburb-links { grid-template-columns: 1fr; }
}
