/* ===== Reset ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button,input,textarea,select{font:inherit;color:inherit}

/* ===== Variables ===== */
:root{
  --yellow:#F4EE5C;
  --yellow-hover:#E0D94E;
  --yellow-light:#FDFCE8;
  --yellow-50:rgba(244,238,92,.1);
  --black:#1A1A1A;
  --grey-900:#2D2D2D;
  --grey-700:#555;
  --grey-500:#888;
  --grey-300:#D4D4D4;
  --grey-100:#F5F5F5;
  --white:#FFFFFF;
  --max-w:1120px;
  --radius:10px;
  --radius-lg:16px;
  --radius-full:100px;
}

/* ===== Typography ===== */
body{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  color:var(--grey-900);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  font-size:16px;
}
h1,h2,h3,h4{
  font-family:'Outfit',system-ui,sans-serif;
  font-weight:600;
  line-height:1.2;
  color:var(--black);
  letter-spacing:-.02em;
}
h1{font-size:2.5rem;font-weight:700}
h2{font-size:2rem}
h3{font-size:1.25rem}
@media(min-width:768px){
  h1{font-size:3.25rem}
  h2{font-size:2.5rem}
}
p{color:var(--grey-700);line-height:1.75}
.label{
  display:inline-block;
  font-size:.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--grey-700);
  margin-bottom:.75rem;
}

/* ===== Layout ===== */
.container{max-width:var(--max-w);margin:0 auto;padding:0 1.25rem}
@media(min-width:768px){.container{padding:0 2rem}}
.section{padding:5rem 0}
@media(min-width:768px){.section{padding:7rem 0}}
.section--grey{background:var(--grey-100)}
.text-center{text-align:center}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.875rem 2rem;
  font-weight:600;font-size:.9rem;
  border-radius:var(--radius-full);
  border:none;cursor:pointer;
  transition:all .25s ease;
}
.btn--yellow{
  background:var(--yellow);color:var(--black);
}
.btn--yellow:hover{
  background:var(--yellow-hover);
  transform:translateY(-1px);
  box-shadow:0 8px 24px rgba(244,238,92,.35);
}
.btn--outline{
  background:transparent;color:var(--black);
  border:1.5px solid var(--grey-300);
}
.btn--outline:hover{
  border-color:var(--yellow);
  color:var(--black);
}
.btn--outline-light{
  color:var(--white);
  border-color:rgba(255,255,255,.35);
}
.btn--outline-light:hover{
  border-color:var(--yellow);
  color:var(--yellow);
}
.btn--white{
  background:var(--white);color:var(--black);
}
.btn--white:hover{
  background:var(--grey-100);
}
.btn-group{display:flex;flex-wrap:wrap;gap:.75rem}

/* ===== Header ===== */
.header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .3s,border-color .3s;
}
.header--scrolled{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom-color:var(--grey-300);
}
.header .nav a{color:rgba(255,255,255,.85);transition:color .2s}
.header--scrolled .nav a{color:var(--grey-700)}
.header .nav a:hover{color:var(--white)}
.header--scrolled .nav a:hover{color:var(--black)}
.header .nav__cta{color:var(--white)}
.header .hamburger{color:var(--white)}
.header--scrolled .hamburger{color:var(--black)}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  height:4.5rem;
}
@media(min-width:768px){.header__inner{height:5rem}}
.header__logo{display:flex;align-items:center;flex-shrink:0}
.header__logo img{height:3rem;width:auto}
@media(min-width:768px){.header__logo img{height:3.6rem}}
.nav{display:none;align-items:center;gap:.25rem}
@media(min-width:960px){.nav{display:flex}}
.nav a{
  padding:.5rem .875rem;
  font-size:.875rem;font-weight:500;
  color:var(--grey-700);
  border-radius:var(--radius);
  transition:color .2s;
}
.nav a:hover{color:var(--black)}
.nav__cta{
  margin-left:.75rem;
  padding:.625rem 1.5rem;
  background:var(--yellow);color:var(--black);
  font-size:.85rem;font-weight:600;
  border-radius:var(--radius-full);
  transition:background .2s;
}
.nav__cta:hover{background:var(--yellow-hover)}

/* Mobile menu */
.hamburger{
  display:flex;align-items:center;justify-content:center;
  width:2.5rem;height:2.5rem;
  background:none;border:none;cursor:pointer;color:var(--black);
}
@media(min-width:960px){.hamburger{display:none}}
.hamburger svg{width:1.5rem;height:1.5rem}
.mobile-menu{
  display:none;
  background:var(--white);
  border-top:1px solid var(--grey-100);
  padding:1rem 1.25rem 1.5rem;
}
.mobile-menu.open{display:block}
@media(min-width:960px){.mobile-menu{display:none!important}}
.mobile-menu a{
  display:block;padding:1rem 0;
  font-size:1rem;font-weight:500;color:var(--grey-700);
  border-bottom:1px solid var(--grey-100);
}
.mobile-menu a:last-of-type{border-bottom:none}
.mobile-menu .btn{margin-top:1rem;width:100%;justify-content:center}

/* ===== Hero (Split layout) ===== */
.hero--split{
  background:var(--white);
  padding:8rem 0 4rem;
  overflow:hidden;
}
@media(min-width:768px){.hero--split{padding:10rem 0 5rem}}
.hero__grid{
  display:grid;
  gap:3rem;
  align-items:center;
}
@media(min-width:768px){
  .hero__grid{
    grid-template-columns:1fr 1fr;
    gap:4rem;
  }
}
.hero__content{
  max-width:540px;
}
.hero--split h1{color:var(--black)}
.hero--split h1 span{
  color:var(--black);
  background:linear-gradient(to top, var(--yellow) 35%, transparent 35%);
  padding:0 .15em;
  margin:0 -.15em;
}
.hero__text{
  font-size:1.1rem;color:var(--grey-700);
  line-height:1.75;margin:1.5rem 0 2rem;
  max-width:440px;
}
.hero__image{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.hero__image img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:35% 40%;
  display:block;
}
.label--light{color:var(--yellow)}

/* Hero wave (inner pages) */

/* ===== Stats ===== */
.stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:3rem;
}
.stat{text-align:center}
.stat__num{
  font-family:'Outfit',sans-serif;
  font-size:2rem;font-weight:700;
  color:var(--black);
}
.stat__label{
  font-size:.75rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;
  color:var(--grey-500);margin-top:.25rem;
}
.stat__divider{
  width:24px;height:2px;
  background:var(--yellow);
  margin:.5rem auto 0;
}

/* ===== Service Cards ===== */
.services-grid{
  display:grid;gap:1.5rem;
  margin-top:3rem;
}
@media(min-width:640px){.services-grid{grid-template-columns:repeat(2,1fr)}}
.s-card{
  background:var(--white);
  border:1px solid var(--grey-100);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:border-color .3s,box-shadow .3s;
}
.s-card:hover{
  border-color:var(--yellow);
  box-shadow:0 8px 32px rgba(0,0,0,.06);
}
.s-card__img{
  aspect-ratio:16/10;overflow:hidden;
}
.s-card__img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s;
}
.s-card:hover .s-card__img img{transform:scale(1.03)}
.s-card__body{padding:1.5rem}
.s-card__body h3{margin-bottom:.5rem}
.s-card__body p{font-size:.9rem;color:var(--grey-700);line-height:1.7}
.s-card__link{
  display:inline-flex;align-items:center;gap:.375rem;
  margin-top:1rem;font-size:.85rem;font-weight:600;
  color:var(--black);
  transition:gap .2s;
}
.s-card__link:hover{gap:.625rem}
.s-card__link svg{width:1rem;height:1rem}

/* ===== Concerns ===== */
.concerns-grid{
  display:grid;gap:.75rem;margin-top:2.5rem;
}
@media(min-width:640px){.concerns-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.concerns-grid{grid-template-columns:repeat(3,1fr)}}
.concern{
  display:flex;align-items:center;gap:.75rem;
  padding:.875rem 1.25rem;
  border-radius:var(--radius);
  background:var(--white);
  border:1px solid var(--grey-100);
  font-size:.9rem;font-weight:500;
  color:var(--grey-900);
}
.concern__dot{
  width:6px;height:6px;
  background:var(--yellow);
  border-radius:50%;
  flex-shrink:0;
}

/* ===== Meet Clare (homepage preview) ===== */
.clare-section{
  display:grid;gap:3rem;align-items:center;
}
@media(min-width:768px){
  .clare-section{grid-template-columns:280px 1fr;gap:4rem}
}
.clare-img{
  width:100%;max-width:280px;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:var(--radius-lg);
}
.clare-link{
  display:inline-flex;align-items:center;gap:.375rem;
  margin-top:1.25rem;
  font-weight:600;font-size:.9rem;
  color:var(--black);
  transition:gap .2s;
}
.clare-link:hover{gap:.625rem}
.clare-link svg{width:1rem;height:1rem}

/* ===== Service Area ===== */
.suburbs{
  display:flex;flex-wrap:wrap;gap:.5rem;
  justify-content:center;margin-top:2rem;
  max-width:56rem;margin-left:auto;margin-right:auto;
}
.suburb{
  padding:.5rem 1rem;
  background:var(--white);
  border:1px solid var(--grey-300);
  border-radius:var(--radius-full);
  font-size:.8rem;font-weight:500;
  color:var(--grey-700);
  transition:border-color .2s,color .2s;
}
.suburb:hover{border-color:var(--yellow);color:var(--black)}
.suburb--more{
  background:var(--yellow-light);
  border-color:var(--yellow);
  color:var(--black);
  font-weight:600;
}

/* ===== CTA Banner ===== */
.cta-banner{
  background:var(--black);
  padding:4rem 0;
  text-align:center;
}
.cta-banner h2{color:var(--white);margin-bottom:.75rem}
.cta-banner p{color:rgba(255,255,255,.6);margin-bottom:2rem}
.cta-banner .btn-group{justify-content:center}

/* ===== Page Hero (inner pages — full-bleed bg) ===== */
.page-hero{
  padding:8rem 0 3rem;
  text-align:center;
  background:var(--white);
}
@media(min-width:768px){.page-hero{padding:10rem 0 4rem}}
.page-hero .container{position:relative}
.page-hero h1{color:var(--black)}
.page-hero p{
  color:var(--grey-700);font-size:1.05rem;
  max-width:480px;margin:.75rem auto 0;
}

/* ===== Service Detail Rows ===== */
.service-row{
  display:grid;gap:3rem;align-items:center;
}
@media(min-width:768px){.service-row{grid-template-columns:1fr 1fr;gap:4rem}}
.service-row--reverse .service-row__img{order:0}
@media(min-width:768px){.service-row--reverse .service-row__img{order:1}}
.service-row__img{
  border-radius:var(--radius-lg);overflow:hidden;
  aspect-ratio:4/3;
}
.service-row__img img{width:100%;height:100%;object-fit:cover}
.service-row__text{color:var(--grey-700);line-height:1.8}
.service-row__text p{margin-bottom:1rem}
.service-row__text strong{color:var(--black);font-weight:600}
.step-list{display:flex;flex-direction:column;gap:.75rem;margin:1.25rem 0}
.step-list li{display:flex;gap:.75rem;align-items:flex-start}
.step-num{
  display:flex;align-items:center;justify-content:center;
  width:1.75rem;height:1.75rem;min-width:1.75rem;
  background:var(--yellow);color:var(--black);
  font-weight:700;font-size:.8rem;border-radius:50%;
}
.check-list{display:flex;flex-direction:column;gap:.5rem;margin:1rem 0}
.check-list li{display:flex;gap:.5rem;align-items:flex-start}
.check-list svg{width:1.125rem;height:1.125rem;color:var(--yellow);flex-shrink:0;margin-top:.2rem}

/* ===== Support Items ===== */
.support-grid{
  display:grid;gap:.75rem;margin-top:2.5rem;
  max-width:56rem;margin-left:auto;margin-right:auto;
}
@media(min-width:640px){.support-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.support-grid{grid-template-columns:repeat(3,1fr)}}
.support-item{
  display:flex;align-items:center;gap:.75rem;
  padding:1rem 1.25rem;
  background:var(--white);
  border:1px solid var(--grey-100);
  border-radius:var(--radius);
  font-size:.9rem;font-weight:500;color:var(--grey-900);
}
.support-item__dot{
  width:6px;height:6px;background:var(--yellow);
  border-radius:50%;flex-shrink:0;
}

/* ===== About Page ===== */
.about-layout{
  display:grid;gap:3rem;
}
@media(min-width:768px){
  .about-layout{grid-template-columns:280px 1fr;gap:4rem}
}
.about-sidebar{position:sticky;top:6rem}
@media(max-width:767px){
  .about-sidebar{position:static;text-align:center}
  .about-sidebar img{max-width:240px;margin:0 auto}
}
.about-sidebar img{
  width:100%;aspect-ratio:3/4;
  object-fit:cover;border-radius:var(--radius-lg);
}
.about-sidebar h3{margin-top:1.25rem;font-size:1.1rem}
.about-sidebar .role{
  color:var(--grey-700);font-weight:600;
  font-size:.85rem;margin-top:.25rem;
}
.about-sidebar .quals{
  color:var(--grey-500);font-size:.8rem;margin-top:.375rem;
}
.about-content p{margin-bottom:1.25rem}
.about-content strong{color:var(--black);font-weight:600}
.quote-block{
  border-left:3px solid var(--yellow);
  padding:1.25rem 1.5rem;
  margin:2rem 0;
  background:var(--yellow-50);
  border-radius:0 var(--radius) var(--radius) 0;
}
.quote-block p{
  font-family:'Outfit',sans-serif;
  font-size:1.15rem;color:var(--black);
  font-style:italic;font-weight:500;
  margin-bottom:.5rem;
}
.quote-block cite{
  color:var(--black);font-weight:600;
  font-size:.85rem;font-style:normal;
}
.values-grid{
  display:grid;gap:1.5rem;margin-top:3rem;
}
@media(min-width:640px){.values-grid{grid-template-columns:repeat(3,1fr)}}
.value-card{
  padding:2rem;
  border:1px solid var(--grey-100);
  border-radius:var(--radius-lg);
  text-align:center;
  transition:border-color .3s;
}
.value-card:hover{border-color:var(--yellow)}
.value-card__icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:3rem;height:3rem;
  background:var(--yellow);
  border-radius:50%;
  color:var(--black);
  margin-bottom:1rem;
}
.value-card__icon svg{width:1.5rem;height:1.5rem}
.value-card p{font-size:.9rem;margin-top:.5rem}

/* ===== Fees ===== */
.fee-card{
  background:var(--white);
  border:1px solid var(--grey-100);
  border-radius:var(--radius-lg);
  padding:2.5rem;
  text-align:center;
  max-width:640px;
  margin:0 auto;
}
.fee-card h2{font-size:2.75rem}
@media(min-width:768px){.fee-card h2{font-size:3.25rem}}
.fee-includes{
  display:grid;gap:.75rem;margin-top:1.5rem;
  text-align:left;max-width:28rem;margin-left:auto;margin-right:auto;
}
@media(min-width:640px){.fee-includes{grid-template-columns:repeat(2,1fr)}}
.fee-includes__item{
  display:flex;align-items:center;gap:.75rem;
  padding:.75rem 1rem;
  background:var(--yellow-50);
  border-radius:var(--radius);
}
.fee-includes__item svg{width:1rem;height:1rem;color:var(--yellow);flex-shrink:0}
.fee-includes__item span{font-size:.85rem;font-weight:500}
.funding-grid{
  display:grid;gap:1.5rem;margin-top:3rem;
}
@media(min-width:640px){.funding-grid{grid-template-columns:repeat(3,1fr)}}
.funding-card{
  border:1px solid var(--grey-100);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:border-color .3s;
}
.funding-card:hover{border-color:var(--yellow)}
.funding-card__img{aspect-ratio:16/10;overflow:hidden}
.funding-card__img img{width:100%;height:100%;object-fit:cover}
.funding-card__body{padding:1.5rem}
.funding-card__body h3{margin-bottom:.5rem}
.funding-card__body p{font-size:.9rem;line-height:1.7}

/* ===== Contact ===== */
.contact-layout{display:grid;gap:3rem}
@media(min-width:768px){.contact-layout{grid-template-columns:5fr 7fr;gap:4rem}}
.contact-card{
  display:flex;align-items:center;gap:1rem;
  padding:1.25rem;
  border:1px solid var(--grey-100);
  border-radius:var(--radius);
  transition:border-color .3s;
}
.contact-card:hover{border-color:var(--yellow)}
.contact-card__icon{
  display:flex;align-items:center;justify-content:center;
  width:2.75rem;height:2.75rem;min-width:2.75rem;
  background:var(--yellow);
  border-radius:50%;
  color:var(--black);
}
.contact-card__icon svg{width:1.25rem;height:1.25rem}
.contact-card__label{
  font-size:.7rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.1em;
  color:var(--grey-500);
}
.contact-card__value{font-weight:600;color:var(--black);font-size:.9rem}

/* Form */
.form-wrap{
  background:var(--grey-100);
  border-radius:var(--radius-lg);
  padding:2rem;
}
@media(min-width:768px){.form-wrap{padding:2.5rem}}
.form-wrap h2{font-size:1.375rem;margin-bottom:.375rem}
.form-wrap>p{color:var(--grey-500);font-size:.9rem;margin-bottom:1.5rem}
.form-row{display:grid;gap:1rem;margin-bottom:1rem}
@media(min-width:640px){.form-row--2{grid-template-columns:repeat(2,1fr)}}
.form-group{display:flex;flex-direction:column;gap:.375rem}
.form-group label{font-size:.85rem;font-weight:600;color:var(--grey-900)}
.form-group label .req{color:#E74C3C}
.form-group input,.form-group textarea{
  width:100%;padding:.75rem 1rem;
  border-radius:var(--radius);
  border:1.5px solid var(--grey-300);
  background:var(--white);
  font-size:.9rem;
  transition:border-color .2s;outline:none;
}
.form-group input:focus,.form-group textarea:focus{
  border-color:var(--yellow);
  box-shadow:0 0 0 3px rgba(244,238,92,.25);
}
.form-group textarea{resize:vertical;min-height:7rem}
.form-success{text-align:center;padding:3rem 0}
.form-success__icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:3.5rem;height:3.5rem;
  background:var(--yellow);
  border-radius:50%;color:var(--black);
  margin-bottom:1rem;
}
.form-success__icon svg{width:1.75rem;height:1.75rem}
.form-success h3{font-size:1.375rem;margin-bottom:.375rem}
.form-success p{color:var(--grey-700)}

/* ===== Footer ===== */
.footer{
  background:var(--black);
  color:rgba(255,255,255,.65);
  padding:3.5rem 0 2rem;
}
.footer__grid{
  display:grid;gap:2rem;
}
@media(min-width:640px){.footer__grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer__grid{grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem}}
.footer__brand{display:flex;align-items:center;gap:.625rem;margin-bottom:1rem}
.footer__brand img{width:2.25rem;height:2.25rem}
.footer__brand span{
  font-family:'Outfit',sans-serif;
  font-size:1.1rem;font-weight:600;color:var(--white);
}
.footer p{font-size:.85rem;line-height:1.7}
.footer h3{
  color:var(--white);font-family:'Plus Jakarta Sans',sans-serif;
  font-size:.7rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.15em;
  margin-bottom:.875rem;
}
.footer ul{display:flex;flex-direction:column;gap:.5rem}
.footer ul a,.footer ul span{font-size:.85rem;transition:color .2s}
.footer ul a:hover{color:var(--yellow)}
.footer__bottom{
  margin-top:3rem;padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.1);
}
.footer__bottom p{
  font-size:.75rem;color:rgba(255,255,255,.35);
  line-height:1.7;margin-bottom:.5rem;
}

/* ===== Mobile Responsiveness ===== */
@media(max-width:479px){
  h1{font-size:2rem}
  h2{font-size:1.625rem}
  .hero--split{padding:5.5rem 0 0}
  .hero__text{font-size:.95rem;margin:1rem 0 1.5rem}
  .hero__image{border-radius:var(--radius)}
  .btn{padding:.75rem 1.5rem;font-size:.85rem}
  .btn-group{flex-direction:column}
  .btn-group .btn{width:100%;justify-content:center}
  .stats{gap:.75rem}
  .stat__num{font-size:1.5rem}
  .stat__label{font-size:.65rem}
  .cta-banner{padding:3rem 0}
  .cta-banner .btn-group{flex-direction:column;align-items:center}
  .cta-banner .btn-group .btn{width:100%;max-width:20rem}
  .page-hero{padding:6.5rem 0 3rem}
  .page-hero h1{font-size:2rem}
  .fee-card{padding:1.5rem}
  .fee-card h2{font-size:2.25rem}
  .form-wrap{padding:1.5rem}
  .section{padding:3.5rem 0}
  .clare-section{gap:2rem}
  .clare-img{max-width:200px;margin:0 auto}
  .suburbs{gap:.375rem}
  .suburb{padding:.375rem .75rem;font-size:.7rem}
}
@media(min-width:480px) and (max-width:767px){
  .hero--split{padding:6rem 0 0}
  .btn-group{flex-wrap:wrap}
  .cta-banner .btn-group{flex-direction:column;align-items:center}
  .cta-banner .btn-group .btn{width:100%;max-width:20rem}
}

/* ===== Animations ===== */
.fade-in{
  opacity:0;transform:translateY(20px);
  transition:opacity .6s ease,transform .6s ease;
}
.fade-in.visible{opacity:1;transform:translateY(0)}
.stagger>.fade-in:nth-child(1){transition-delay:0ms}
.stagger>.fade-in:nth-child(2){transition-delay:80ms}
.stagger>.fade-in:nth-child(3){transition-delay:160ms}
.stagger>.fade-in:nth-child(4){transition-delay:240ms}

/* ===== Accessibility ===== */
.skip-link{
  position:absolute;top:-100%;left:50%;
  transform:translateX(-50%);
  padding:.75rem 1.5rem;
  background:var(--black);color:var(--white);
  font-size:.9rem;font-weight:600;
  border-radius:0 0 var(--radius) var(--radius);
  z-index:200;
  transition:top .2s;
}
.skip-link:focus{top:0}

/* Focus indicators for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible{
  outline:2px solid var(--yellow);
  outline-offset:2px;
  border-radius:2px;
}
.btn:focus-visible{
  outline:2px solid var(--black);
  outline-offset:2px;
}
.nav__cta:focus-visible{
  outline:2px solid var(--black);
  outline-offset:2px;
}

/* Respect reduced motion preference */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:0.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:0.01ms!important;
    scroll-behavior:auto!important;
  }
  .fade-in{opacity:1;transform:none}
}

/* ===== Utilities ===== */
.mt-1{margin-top:.5rem}
.mt-2{margin-top:.75rem}
.mt-3{margin-top:1rem}
.mt-4{margin-top:1.5rem}
.mt-6{margin-top:2rem}
.mb-4{margin-bottom:1.5rem}
.max-w-lg{max-width:540px}
.max-w-xl{max-width:640px}
.mx-auto{margin-left:auto;margin-right:auto}
