@font-face { font-family: "Laurence"; src: url("/fonts/laurencb.ttf") format("truetype"); font-weight: 400; font-display: swap; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: #B53614; }
a:hover { color: #D8431B; }
@keyframes gz-pop { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes gz-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.gz-btn { transition: transform .15s ease, box-shadow .15s ease; }
.gz-btn:active { transform: scale(.97); }
.gz-faq-panel[hidden] { display: none; }
.gz-faq-chevron { transition: transform 240ms; flex: none; }
.gz-faq-chevron.is-open { transform: rotate(180deg); }
/* ---- Content pages (suburb, CCS, fees, comparison) ---------------------- */
/* The home page styles itself inline; the content pages share these instead,
   because six pages of prose would be unreadable written that way. */

.gz-wrap { max-width: 820px; margin: 0 auto; }
.gz-wrap-wide { max-width: 1100px; margin: 0 auto; }
.gz-section { padding: clamp(40px,6vw,72px) clamp(20px,5vw,56px); }
.gz-section-cream { background: #FFF4E6; }
.gz-section-white { background: #fff; }

.gz-page-hero { padding: clamp(28px,4vw,44px) clamp(20px,5vw,56px) clamp(32px,5vw,52px); }
.gz-page-hero h1 {
  font-family: "Fredoka", sans-serif; font-weight: 700;
  font-size: clamp(30px,3.8vw,46px); line-height: 1.12; letter-spacing: -.01em;
  color: #3D3A36; margin: 12px 0 0; text-wrap: balance;
}
.gz-page-hero .gz-lede { font-size: 1.2rem; line-height: 1.55; color: #6B655C; max-width: 34em; margin: 16px 0 0; }
.gz-eyebrow {
  font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .09em; text-transform: uppercase; color: #5CC419;
}

.gz-crumbs { font-size: 13px; color: #9B948A; margin: 0 0 4px; }
.gz-crumbs a { color: #6B655C; text-decoration: none; font-weight: 700; }
.gz-crumbs a:hover { color: #B53614; }
.gz-crumbs span { padding: 0 6px; }

.gz-prose { font-size: 1.05rem; line-height: 1.7; color: #6B655C; }
.gz-prose h2 {
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 2rem;
  line-height: 1.25; color: #3D3A36; margin: 2em 0 .5em; text-wrap: balance;
}
.gz-prose h3 {
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.3rem;
  color: #3D3A36; margin: 1.6em 0 .4em;
}
.gz-prose h2:first-child, .gz-prose h3:first-child { margin-top: 0; }
.gz-prose p { margin: 0 0 1em; }
.gz-prose ul { margin: 0 0 1.2em; padding-left: 1.2em; }
.gz-prose li { margin: 0 0 .5em; }
.gz-prose strong { color: #3D3A36; }
.gz-prose a { color: #B53614; font-weight: 700; }

.gz-note {
  background: #EFF9E6; border-left: 4px solid #5CC419; border-radius: 0 16px 16px 0;
  padding: 18px 22px; margin: 1.6em 0; font-size: 1rem; line-height: 1.6;
}
.gz-note p:last-child { margin-bottom: 0; }

.gz-steps { list-style: none; counter-reset: gz-step; padding: 0; margin: 1.2em 0 1.6em; }
.gz-steps li { position: relative; counter-increment: gz-step; padding-left: 46px; margin: 0 0 1em; }
.gz-steps li::before {
  content: counter(gz-step); position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 50%; background: #5CC419; color: #fff;
  font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}

.gz-table-scroll { overflow-x: auto; margin: 1.4em 0 1.8em; }
.gz-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 15px; }
.gz-table th, .gz-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid #EFE6D8; vertical-align: top; }
.gz-table thead th {
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 14px; color: #3D3A36;
  background: #FFF4E6; border-bottom: 2px solid #E3D6C2;
}
.gz-table tbody th { font-weight: 800; color: #3D3A36; width: 30%; }

.gz-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.gz-card {
  background: #fff; border-radius: 24px; padding: 26px 24px;
  box-shadow: 0 6px 18px rgba(61,58,54,.09); text-decoration: none; display: block;
}
a.gz-card { transition: transform .15s ease, box-shadow .15s ease; }
a.gz-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(61,58,54,.14); }
.gz-card h3 { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.2rem; color: #3D3A36; margin: 0 0 6px; }
.gz-card p { font-size: 14px; line-height: 1.55; color: #6B655C; margin: 0; }
.gz-card-more { display: inline-block; margin-top: 10px; font-weight: 800; font-size: 14px; color: #B53614; }

.gz-cta-band {
  background: #FFFBF5; border: 1px solid #EFE6D8; border-radius: 28px;
  padding: 30px 32px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin: 2em 0 0;
}
.gz-cta-band h2 { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.7rem; color: #3D3A36; margin: 0; }
.gz-cta-band p { margin: 6px 0 0; font-size: 15px; color: #6B655C; }
.gz-btn-primary {
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 17px;
  background: #5CC419; color: #fff; border-radius: 999px; padding: 14px 30px;
  text-decoration: none; box-shadow: 0 8px 20px rgba(92,196,25,.28); white-space: nowrap;
}
.gz-btn-secondary {
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 17px;
  background: #fff; color: #3D3A36; border: 2px solid #E3D6C2; border-radius: 999px;
  padding: 12px 28px; text-decoration: none; white-space: nowrap;
}
.gz-btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

.gz-faq-list { display: flex; flex-direction: column; gap: 12px; }
.gz-faq-card { background: #FFFBF5; border: 1px solid #EFE6D8; border-radius: 16px; overflow: hidden; }
.gz-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: none; cursor: pointer; padding: 18px 22px; text-align: left;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.02rem; color: #3D3A36;
}
.gz-faq-a { margin: 0; padding: 0 22px 20px; font-size: 15px; line-height: 1.6; color: #6B655C; }

.gz-section-head { text-align: center; max-width: 660px; margin: 0 auto 32px; }
.gz-section-head h2 { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 2rem; color: #3D3A36; margin: 8px 0 0; text-wrap: balance; }

.gz-pills { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.gz-pill { font-weight: 700; font-size: 13px; padding: 7px 15px; border-radius: 999px; background: #EFF9E6; color: #3F8810; }
.gz-pill-plain { background: #fff; border: 2px solid #E3D6C2; color: #6B655C; }

/* Photo tiles crop to a fixed 3:2 box at every width, so the source image can be
   a normal landscape photo rather than a pre-cut letterbox. */
/* height:auto is required - without it the height="800" attribute is used as the
   computed height and the aspect-ratio never applies. */
.gz-day-photo { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }

@media (max-width: 900px) {
  .gz-header { flex-wrap: wrap; }
  .gz-hero-grid { grid-template-columns: 1fr !important; }
  .gz-about-grid { grid-template-columns: 1fr !important; }
  .gz-feat-grid { grid-template-columns: repeat(2,1fr) !important; }
  .gz-day-grid { grid-template-columns: repeat(2,1fr) !important; }
  .gz-test-grid { grid-template-columns: 1fr !important; }
  .gz-form-grid { grid-template-columns: 1fr !important; }
  .gz-nav-links { display: none !important; }
  .gz-footer-meta { flex-direction: column !important; }
  .gz-card-grid { grid-template-columns: 1fr; }
  .gz-cta-band { flex-direction: column; align-items: flex-start; }
}

/* Only drop the photo tiles to a single column once two would be too narrow.
   Going straight from three columns to one stretched each photo to 810x150. */
@media (max-width: 620px) {
  .gz-day-grid { grid-template-columns: 1fr !important; }
}
