/* ── Koori Constructions — canonical site chrome (3 Sep 2026) ──────────────
   ONE header + footer for every page. Replaces 21 header and 29 footer
   variants, and the floating "Menu" button that overlapped page content on
   mobile. Tokens follow the brand spec: navy #1F3864, cyan #41B6E6, Inter,
   never red. ------------------------------------------------------------ */
:root{
  --kc-navy:#1F3864; --kc-cyan:#41B6E6; --kc-ink:#1f2937; --kc-mid:#4a5568;
  --kc-line:#e5e7eb; --kc-bg:#f5f8fb; --kc-radius:12px;
  --kc-shadow:0 1px 3px rgba(15,31,54,.08); --kc-shadow-lg:0 10px 30px rgba(31,56,100,.16);
  --kc-hd-h:76px;
}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;color:var(--kc-ink)}
img{max-width:100%}

/* header ---------------------------------------------------------------- */
.kc-hd{position:sticky;top:0;z-index:900;background:#fff;border-bottom:1px solid var(--kc-line);
  box-shadow:var(--kc-shadow);display:flex;align-items:center;gap:1.2rem;
  padding:.55rem clamp(1rem,3vw,2rem);min-height:var(--kc-hd-h)}
.kc-hd-logo{display:flex;align-items:center;gap:.72rem;flex:0 0 auto;text-decoration:none}
.kc-hd-logo img{height:64px;width:auto;display:block}
.kc-wm{display:flex;flex-direction:column;line-height:1.06}
.kc-wm b{font-weight:800;font-size:1.32rem;letter-spacing:.015em;color:var(--kc-navy)}
.kc-wm i{font-style:normal;font-weight:600;font-size:.78rem;letter-spacing:.185em;color:#5d7ea9}
.kc-hd-nav{display:flex;align-items:center;gap:1.35rem;margin-left:auto}
.kc-hd-nav a{color:var(--kc-navy);text-decoration:none;font-weight:600;font-size:.98rem;white-space:nowrap;padding:.4rem 0;border-bottom:2px solid transparent}
.kc-hd-nav a:hover,.kc-hd-nav a[aria-current="page"]{border-bottom-color:var(--kc-cyan)}
.kc-dd{position:relative}
.kc-dd>button{background:none;border:0;font:inherit;font-weight:600;color:var(--kc-navy);cursor:pointer;padding:.4rem 0;display:flex;align-items:center;gap:.3rem}
.kc-dd-menu{position:absolute;top:calc(100% + .55rem);left:50%;transform:translateX(-50%);background:#fff;
  border:1px solid var(--kc-line);border-radius:var(--kc-radius);box-shadow:var(--kc-shadow-lg);
  padding:.6rem;min-width:230px;display:none}
.kc-dd:hover .kc-dd-menu,.kc-dd:focus-within .kc-dd-menu{display:block}
.kc-dd-menu a{display:block;padding:.5rem .7rem;border-radius:8px;border:0}
.kc-dd-menu a:hover{background:var(--kc-bg)}
.kc-hd-cta{display:flex;align-items:center;gap:.8rem;flex:0 0 auto}
.kc-tel{color:var(--kc-navy);font-weight:800;text-decoration:none;white-space:nowrap}
.kc-btn{background:var(--kc-cyan);color:var(--kc-navy);font-weight:800;text-decoration:none;
  padding:.7rem 1.2rem;border-radius:10px;white-space:nowrap;display:inline-block}
.kc-btn:hover{background:var(--kc-navy);color:#fff}
.kc-btn-sm{display:none}
.kc-burger{flex:0 0 auto;display:none;background:none;border:2px solid var(--kc-navy);border-radius:10px;
  color:var(--kc-navy);font-size:1.25rem;line-height:1;padding:.5rem .7rem;cursor:pointer}
@media(max-width:1040px){
  .kc-hd-nav{display:none}
  .kc-hd-cta .kc-tel{display:none}
  .kc-burger{display:block;margin-left:auto}
  .kc-hd-logo img{height:50px}
  .kc-wm b{font-size:.98rem}
  .kc-wm i{font-size:.6rem;letter-spacing:.15em}
  .kc-btn{padding:.6rem .9rem;font-size:.9rem}
}
@media(max-width:620px){
  .kc-hd{padding:.5rem .85rem;gap:.5rem}
  .kc-btn-lg{display:none}
  .kc-btn-sm{display:inline}
  .kc-panel .kc-btn{padding:.85rem 1.1rem;font-size:1rem;display:block;text-align:center}
  .kc-hd-logo img{height:40px}
  .kc-burger{padding:.45rem .6rem}
}
/* mobile panel */
.kc-panel{position:fixed;inset:var(--kc-hd-h) 0 0 0;background:#fff;z-index:899;overflow:auto;
  padding:1.2rem clamp(1rem,5vw,2rem) 3rem;display:none}
.kc-panel.open{display:block}
.kc-panel h3{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:var(--kc-cyan);margin:1.4rem 0 .5rem}
.kc-panel a{display:block;padding:.7rem 0;color:var(--kc-navy);text-decoration:none;font-weight:600;
  font-size:1.05rem;border-bottom:1px solid var(--kc-line)}
.kc-panel .kc-btn{display:block;text-align:center;margin-top:1.6rem;border-bottom:0}
body.kc-locked{overflow:hidden}

/* footer ---------------------------------------------------------------- */
.kc-ft{background:#14213d;color:#c9d3e0;padding:3.2rem clamp(1rem,4vw,2.5rem) 2rem;margin-top:0}
.kc-ft-grid{max-width:1200px;margin:0 auto;display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);gap:2rem}
@media(max-width:860px){.kc-ft-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.kc-ft-grid{grid-template-columns:1fr}}
.kc-ft img.kc-ft-logo{height:120px;width:auto;display:block;margin:0 auto 1rem}
.kc-ft h4{color:#fff;font-size:1rem;margin:0 0 .8rem}
.kc-ft a{color:#c9d3e0;text-decoration:none;display:block;padding:.28rem 0;font-size:.95rem}
.kc-ft a:hover{color:var(--kc-cyan)}
.kc-ft p{margin:.2rem 0;font-size:.93rem;line-height:1.65}
.kc-ft-ack{max-width:1200px;margin:2.2rem auto 0;padding-top:1.6rem}
.kc-ft-ack{border-top:1px solid #2a3a5c;color:#9fb0c6;font-size:.9rem;line-height:1.7}
.kc-ft-legal{max-width:1200px;margin:1.2rem auto 0;display:flex;flex-wrap:wrap;gap:.4rem 1.2rem;
  justify-content:space-between;color:#8b9bb4;font-size:.85rem}
.kc-ft-legal a{display:inline;padding:0}
.kc-artband{height:14px;background:url('/assets/koori-artwork-banner.jpg') center/cover no-repeat}
/* Keyboard access: a skip link and a visible focus ring. Without these a
   keyboard or screen-reader user tabs through the whole nav on every page, and
   cannot see where focus is (5 Sep 2026). */
.kc-skip{position:absolute;left:-9999px;top:0;z-index:1000;background:var(--kc-navy);color:#fff;
  padding:.8rem 1.2rem;font-weight:700;border-radius:0 0 10px 0;text-decoration:none}
.kc-skip:focus{left:0}
a:focus-visible,button:focus-visible,summary:focus-visible,input:focus-visible,
select:focus-visible,textarea:focus-visible{outline:3px solid var(--kc-cyan);outline-offset:2px;border-radius:4px}

.kc-dd-sep{border-top:1px solid var(--kc-line);margin-top:.35rem;padding-top:.55rem!important}
