/* Macquarie Mediation — stylesheet */
:root{
  --navy:#1a3d4f;
  --teal:#1b7a8a;
  --teal-light:#2fa8b8;
  --green:#5a9e3a;
  --green-light:#7dc05a;
  --bg:#f7fafa;
  --white:#ffffff;
  --text:#2b3a42;
  --muted:#5f7079;
  --border:#e3ecee;
  --shadow:0 6px 24px rgba(26,61,79,.08);
  --radius:14px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Lato','Inter',system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Cormorant Garamond',Georgia,serif;
  color:var(--navy);
  font-weight:600;
  line-height:1.2;
  letter-spacing:.2px;
}
h1{font-size:clamp(2.2rem,4.8vw,3.6rem)}
h2{font-size:clamp(1.8rem,3.4vw,2.6rem);margin-bottom:.6em}
h3{font-size:1.45rem;margin-bottom:.4em}
h4{font-size:1.15rem;margin-bottom:.3em}
p{margin-bottom:1em;color:var(--text)}
a{color:var(--teal);text-decoration:none;transition:color .2s}
a:hover{color:var(--teal-light)}
img{max-width:100%;display:block}
.container{max-width:1120px;margin:0 auto;padding:0 24px}
.narrow{max-width:780px;margin:0 auto;padding:0 24px}

/* Header */
.site-header{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:100;
}
.nav-wrap{
  display:flex;flex-direction:column;align-items:center;
  padding:16px 24px 12px;max-width:1200px;margin:0 auto;gap:10px;
}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo-mark{width:280px;height:auto;max-width:none}
.logo-text-wrap{display:flex;flex-direction:column;line-height:1}
.logo-main{
  font-family:'Cormorant Garamond',serif;
  color:var(--navy);font-weight:700;
  font-size:1.35rem;letter-spacing:1.5px;
}
.logo-sub{
  color:var(--green);font-size:.62rem;
  letter-spacing:3px;font-weight:700;margin-top:2px;
}
.nav-links{display:flex;gap:28px;align-items:center;list-style:none}
.nav-links a{
  color:var(--navy);font-weight:600;font-size:1.15rem;
  padding:6px 0;border-bottom:2px solid transparent;
}
.nav-links a:hover,.nav-links a.active{
  color:var(--teal);border-bottom-color:var(--green);
}
.nav-cta{
  background:var(--green);color:var(--white)!important;
  padding:10px 20px!important;border-radius:999px;
  border:none!important;
}
.nav-cta:hover{background:var(--green-light);color:var(--white)!important}
.menu-toggle{
  display:none;background:none;border:none;cursor:pointer;
  width:32px;height:32px;position:relative;
}
.menu-toggle span{
  display:block;height:2px;background:var(--navy);
  margin:6px 0;border-radius:2px;transition:.3s;
}

/* Hero */
.hero{
  background:linear-gradient(135deg,#eaf4f3 0%,#f7fafa 60%,#eef6e9 100%);
  padding:90px 0 100px;position:relative;overflow:hidden;
}
.hero::after{
  content:"";position:absolute;bottom:-40px;left:0;right:0;
  height:120px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path fill='%231b7a8a' fill-opacity='.08' d='M0,64 C240,120 480,0 720,48 C960,96 1200,32 1440,72 L1440,120 L0,120 Z'/><path fill='%235a9e3a' fill-opacity='.08' d='M0,80 C280,40 520,110 780,70 C1040,30 1260,90 1440,60 L1440,120 L0,120 Z'/></svg>") no-repeat center/cover;
}
.hero-inner{max-width:820px;margin:0 auto;text-align:center;position:relative;z-index:2}
.hero-split{
  max-width:1120px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  text-align:left;
  padding:0 24px;
}
.hero-split .hero-lead{margin-left:0;margin-right:0}
.hero-split .hero-cta{justify-content:flex-start}
.hero-photo img{border-radius:16px;box-shadow:var(--shadow);width:100%;display:block}
.hero h1{margin-bottom:20px}
.hero-lead{
  font-size:1.2rem;color:var(--muted);
  max-width:640px;margin:0 auto 32px;
}
.hero-cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* Buttons */
.btn{
  display:inline-block;padding:14px 28px;border-radius:999px;
  font-weight:700;font-size:.95rem;letter-spacing:.3px;
  border:2px solid transparent;cursor:pointer;transition:.25s;
  font-family:inherit;
}
.btn-primary{background:var(--green);color:var(--white)}
.btn-primary:hover{background:var(--green-light);color:var(--white);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--teal);border-color:var(--teal)}
.btn-outline:hover{background:var(--teal);color:var(--white)}

/* Sections */
section{padding:80px 0}
.section-intro{text-align:center;max-width:720px;margin:0 auto 56px}
.section-intro p{color:var(--muted);font-size:1.08rem}
.eyebrow{
  display:inline-block;color:var(--green);font-weight:700;
  font-size:.78rem;letter-spacing:2.5px;text-transform:uppercase;
  margin-bottom:14px;
}

/* Pillar cards */
.pillars{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:26px}
.pillar{
  background:var(--white);padding:36px 30px;border-radius:var(--radius);
  box-shadow:var(--shadow);border-top:4px solid var(--green);
  transition:transform .25s;
}
.pillar:hover{transform:translateY(-4px)}
.pillar-icon{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(135deg,var(--teal),var(--teal-light));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;color:var(--white);
}

/* Alt section */
.alt-bg{background:var(--white);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.two-col.reverse{direction:rtl}
.two-col.reverse>*{direction:ltr}

/* Trust bar */
.trust-bar{
  background:var(--navy);color:#cfe0e3;text-align:center;
  padding:50px 24px;
}
.trust-bar h3{color:var(--white);margin-bottom:8px}
.trust-items{
  display:flex;justify-content:center;gap:50px;
  flex-wrap:wrap;margin-top:26px;
}
.trust-item{font-size:.9rem;letter-spacing:.5px}
.trust-item strong{
  display:block;color:var(--green-light);
  font-size:1.6rem;font-family:'Cormorant Garamond',serif;
}

/* CTA band */
.cta-band{
  background:linear-gradient(135deg,var(--teal) 0%,var(--navy) 100%);
  color:var(--white);text-align:center;padding:70px 24px;
}
.cta-band h2{color:var(--white)}
.cta-band p{color:#d8e8ea;max-width:560px;margin:0 auto 28px}

/* Timeline */
.timeline{
  position:relative;max-width:780px;margin:0 auto;padding:0 20px;
}
.timeline::before{
  content:"";position:absolute;left:34px;top:10px;bottom:10px;
  width:3px;background:linear-gradient(var(--teal),var(--green));
  border-radius:2px;
}
.step{
  position:relative;padding:0 0 40px 90px;
}
.step-num{
  position:absolute;left:12px;top:0;
  width:50px;height:50px;border-radius:50%;
  background:var(--white);border:3px solid var(--teal);
  color:var(--teal);font-weight:700;
  display:flex;align-items:center;justify-content:center;
  font-family:'Cormorant Garamond',serif;font-size:1.3rem;
  box-shadow:var(--shadow);
}
.step h3{margin-bottom:6px}
.step p{color:var(--muted);margin:0}

/* Fees */
.fee-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.fee-card{
  background:var(--white);border-radius:var(--radius);
  padding:34px 30px;box-shadow:var(--shadow);
  border:1px solid var(--border);
}
.fee-card h3{color:var(--teal)}
.fee-card .price{
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem;color:var(--navy);margin:10px 0;
}
.fee-card .price small{font-size:.9rem;color:var(--muted);font-family:inherit}
.fee-card ul{list-style:none;margin-top:16px}
.fee-card li{
  padding:8px 0;padding-left:28px;position:relative;
  color:var(--text);font-size:.95rem;border-bottom:1px solid var(--border);
}
.fee-card li:last-child{border:none}
.fee-card li::before{
  content:"";position:absolute;left:0;top:14px;
  width:14px;height:14px;border-radius:50%;
  background:var(--green-light);
}

/* FAQ */
.faq details{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius);margin-bottom:14px;
  padding:20px 24px;box-shadow:0 2px 8px rgba(0,0,0,.03);
}
.faq summary{
  cursor:pointer;font-weight:700;color:var(--navy);
  font-size:1.05rem;list-style:none;display:flex;
  justify-content:space-between;align-items:center;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";color:var(--teal);font-size:1.6rem;
  font-weight:400;transition:.2s;
}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details p{margin:14px 0 0;color:var(--muted)}

/* Testimonials */
.testimonial-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:26px}
.testimonial{
  background:var(--white);padding:34px 30px;border-radius:var(--radius);
  box-shadow:var(--shadow);position:relative;border-left:4px solid var(--green);
}
.testimonial blockquote{
  font-style:italic;color:var(--text);font-size:1.02rem;
  line-height:1.7;margin-bottom:18px;
}
.testimonial cite{
  display:block;color:var(--teal);font-weight:700;
  font-style:normal;font-size:.9rem;
}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:50px}
form.enquiry{
  background:var(--white);padding:38px;border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.form-row{margin-bottom:20px}
.form-row label{
  display:block;font-weight:700;color:var(--navy);
  margin-bottom:6px;font-size:.9rem;
}
.form-row input,.form-row select,.form-row textarea{
  width:100%;padding:12px 14px;border:1.5px solid var(--border);
  border-radius:8px;font-family:inherit;font-size:1rem;
  background:var(--bg);transition:border-color .2s;
}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{
  outline:none;border-color:var(--teal);background:var(--white);
}
.form-row textarea{min-height:140px;resize:vertical}
.contact-info h3{color:var(--navy)}
.contact-info .info-item{
  padding:18px 0;border-bottom:1px solid var(--border);
}
.contact-info .info-item:last-child{border:none}
.contact-info .label{
  color:var(--green);font-size:.78rem;letter-spacing:2px;
  text-transform:uppercase;font-weight:700;margin-bottom:4px;
}
.confidential-note{
  background:#eaf4f3;border-left:4px solid var(--teal);
  padding:18px 22px;border-radius:8px;margin-top:20px;
  font-size:.92rem;color:var(--navy);
}

/* Resource cards */
.resource-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px}
.resource-card{
  background:var(--white);padding:28px;border-radius:var(--radius);
  box-shadow:var(--shadow);border:1px solid var(--border);
  transition:.2s;
}
.resource-card:hover{transform:translateY(-3px);border-color:var(--green-light)}
.resource-card h4{color:var(--teal);margin-bottom:10px}
.resource-card p{color:var(--muted);font-size:.95rem;margin-bottom:14px}
.resource-card a{font-weight:700;font-size:.9rem}

/* List styling */
.prose ul{margin:0 0 20px 22px}
.prose li{margin-bottom:10px}
.prose p{margin-bottom:16px}
.checklist{list-style:none;margin:0 0 20px}
.checklist li{
  padding:10px 0 10px 32px;position:relative;
}
.checklist li::before{
  content:"✓";position:absolute;left:0;top:10px;
  width:20px;height:20px;border-radius:50%;
  background:var(--green);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:.75rem;font-weight:700;
}

/* Footer */
footer{
  background:var(--navy);color:#b8cdd2;padding:60px 0 30px;
  margin-top:40px;
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;
  margin-bottom:40px;
}
footer h4{color:var(--white);font-size:1.1rem;margin-bottom:18px}
footer ul{list-style:none}
footer li{margin-bottom:10px}
footer a{color:#b8cdd2;font-size:.92rem}
footer a:hover{color:var(--green-light)}
footer p{color:#b8cdd2;font-size:.92rem}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:24px;display:flex;justify-content:space-between;
  flex-wrap:wrap;gap:12px;font-size:.85rem;
}

/* Footer social icons */
.footer-social{display:flex;gap:14px;margin-top:18px;align-items:center}
.footer-social a{
  color:#b8cdd2;transition:color .2s;
  display:flex;align-items:center;
}
.footer-social a:hover{color:var(--green-light)}

/* Online mediation banner */
.online-band{
  background:linear-gradient(135deg,var(--navy) 0%,var(--teal) 100%);
  color:var(--white);padding:56px 24px;text-align:center;
}
.online-band h2{color:var(--white);margin-bottom:14px}
.online-band p{color:#d8e8ea;max-width:680px;margin:0 auto 28px;font-size:1.08rem}
.online-features{
  display:flex;justify-content:center;gap:40px;flex-wrap:wrap;margin-top:30px;
}
.online-feature{font-size:.93rem;color:#cde8ea;display:flex;align-items:center;gap:8px}
.online-feature::before{
  content:"✓";width:22px;height:22px;background:rgba(255,255,255,.15);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:.75rem;font-weight:700;flex-shrink:0;
}

/* Cookie banner */
.cookie-banner{
  position:fixed;bottom:20px;left:20px;right:20px;
  max-width:540px;margin:0 auto;
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius);padding:22px 26px;
  box-shadow:0 12px 40px rgba(0,0,0,.15);
  z-index:200;display:none;
}
.cookie-banner.show{display:block}
.cookie-banner p{font-size:.9rem;color:var(--muted);margin-bottom:14px}
.cookie-banner .btn{padding:10px 20px;font-size:.85rem;margin-right:8px}

/* Responsive */
@media(max-width:860px){
  .nav-wrap{flex-direction:row;justify-content:space-between;align-items:center;padding:12px 24px;gap:0}
  .nav-links{
    display:none;position:absolute;top:100%;left:0;right:0;
    background:var(--white);flex-direction:column;gap:0;
    padding:20px;box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-links li{width:100%}
  .nav-links a{display:block;padding:14px 0;border-bottom:1px solid var(--border)}
  .menu-toggle{display:block}
  .hero-split{grid-template-columns:1fr;gap:36px;text-align:center}
  .hero-split .hero-lead{margin:0 auto 32px}
  .hero-split .hero-cta{justify-content:center}
  .hero-photo{order:-1}
  .two-col,.contact-grid{grid-template-columns:1fr;gap:40px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .trust-items{gap:30px}
  section{padding:60px 0}
  .hero{padding:60px 0 80px}
}
@media(max-width:520px){
  .footer-grid{grid-template-columns:1fr}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{width:100%}
}
