/* =====================================================================
   MMC Accountants — modern static refresh
   Brand palette taken from existing site:
     Deep blue   #00456e   (primary)
     Navy        #00253b   (dark)
     Near-black  #001522   (darkest, footer)
     Lime green  #8dc63f   (accent / CTAs)
     Green hover #77aa32
   ===================================================================== */

:root {
  --blue: #00456e;
  --blue-dark: #00253b;
  --blue-darkest: #001522;
  --green: #8dc63f;
  --green-dark: #77aa32;
  --green-soft: #f1f7e6;
  --ink: #1f2733;
  --body: #44505f;
  --muted: #6b7785;
  --line: #e4e8ec;
  --bg: #ffffff;
  --bg-alt: #f5f8fa;
  --bg-blue-soft: #eef4f8;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(0, 37, 59, .06), 0 2px 8px rgba(0, 37, 59, .05);
  --shadow-md: 0 6px 22px rgba(0, 37, 59, .10);
  --shadow-lg: 0 18px 50px rgba(0, 37, 59, .16);
  --container: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --head: "Poppins", var(--font);
  --t: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4, h5 { font-family: var(--head); color: var(--ink); line-height: 1.2; font-weight: 600; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.3px; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1rem; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.25rem; }
li { margin-bottom: .45rem; }
strong { color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--blue { background: var(--bg-blue-soft); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--body); }
.eyebrow {
  display: inline-block; font-family: var(--head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; font-size: .76rem;
  color: var(--green-dark); margin-bottom: .9rem;
}
.section__head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 50px; cursor: pointer;
  border: 2px solid transparent; transition: all var(--t); text-align: center;
}
.btn--primary { background: var(--green); color: #14310a; border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(141,198,63,.35); }
.btn--blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }

/* ---------- top bar ---------- */
.topbar { background: var(--blue-darkest); color: #cfdae3; font-size: .86rem; }
.topbar .container { display: flex; justify-content: flex-end; align-items: center; gap: 22px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #cfdae3; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--green); }
.topbar .portal { background: var(--green); color: #14310a; padding: .3rem .85rem; border-radius: 50px; font-weight: 600; }
.topbar .portal:hover { background: #fff; color: var(--blue); }

/* ---------- header / nav ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); transition: box-shadow var(--t); }
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 104px; padding: 12px 0; }
.nav__logo img { height: 64px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__menu > li { position: relative; }
.nav__menu > li > a {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--head); font-weight: 500; color: var(--ink);
  padding: .65rem .85rem; border-radius: 8px; font-size: .98rem;
}
.nav__menu > li > a:hover, .nav__menu > li.active > a { color: var(--blue); background: var(--bg-blue-soft); }
.nav__menu .caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .6; }
.nav__cta { display: flex; align-items: center; gap: 12px; }

/* dropdown */
.dropdown__menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--t); z-index: 60;
}
.nav__menu > li:hover .dropdown__menu, .nav__menu > li:focus-within .dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__menu li { margin: 0; }
.dropdown__menu a { display: block; padding: .6rem .8rem; border-radius: 7px; color: var(--body); font-size: .95rem; font-weight: 500; }
.dropdown__menu a:hover { background: var(--green); color: #14310a; }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--blue); border-radius: 2px; transition: all var(--t); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; background: linear-gradient(135deg, var(--blue-darkest) 0%, var(--blue) 55%, #015a8f 100%); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(141,198,63,.28), transparent 70%); border-radius: 50%; }
.hero::before { content: ""; position: absolute; left: -80px; bottom: -140px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%); border-radius: 50%; }
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 92px 0; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 .hl { color: var(--green); }
.hero p { color: #d6e3ed; font-size: 1.2rem; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.8rem; }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: .45rem 1rem; border-radius: 50px; font-size: .9rem; margin-bottom: 1.4rem; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero__card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 30px; backdrop-filter: blur(6px); }
.hero__card h3 { color: #fff; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 6px; }
.hero__stat .n { font-family: var(--head); font-weight: 700; font-size: 2rem; color: var(--green); line-height: 1; }
.hero__stat .l { font-size: .82rem; color: #c3d3df; margin-top: .35rem; }

/* page banner (interior pages) */
.banner { background: linear-gradient(135deg, var(--blue-darkest), var(--blue)); color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden; }
.banner::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(141,198,63,.22), transparent 70%); border-radius: 50%; }
.banner .container { position: relative; z-index: 2; }
.banner h1 { color: #fff; margin-bottom: .6rem; }
.banner p { color: #d6e3ed; max-width: 640px; margin: 0; font-size: 1.12rem; }
.breadcrumb { font-size: .85rem; color: #a9c1d2; margin-bottom: 1rem; }
.breadcrumb a { color: #cfe0ec; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 .4rem; opacity: .6; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform var(--t), box-shadow var(--t), border-color var(--t); height: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d3e0e9; }
.card .ico { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--green-soft); color: var(--blue); margin-bottom: 18px; }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: .9rem; }
.card .more { font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--blue); display: inline-flex; align-items: center; gap: .35rem; }
.card .more::after { content: "→"; transition: transform var(--t); }
.card:hover .more::after { transform: translateX(4px); }
.card--link { display: block; color: inherit; }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split--reverse .split__media { order: 2; }
.tick { list-style: none; padding: 0; }
.tick li { position: relative; padding-left: 2rem; margin-bottom: .8rem; color: var(--body); }
.tick li::before { content: ""; position: absolute; left: 0; top: .35rem; width: 18px; height: 18px; border-radius: 50%; background: var(--green); }
.tick li::after { content: ""; position: absolute; left: 5.5px; top: .62rem; width: 5px; height: 8px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stats .n { font-family: var(--head); font-weight: 700; font-size: 2.6rem; color: var(--blue); line-height: 1; }
.stats .n .plus { color: var(--green); }
.stats .l { color: var(--muted); margin-top: .4rem; font-size: .95rem; }

/* accreditation strip */
.accred { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.accred .badge { font-family: var(--head); font-weight: 700; letter-spacing: .5px; color: var(--blue); background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: .6rem 1.4rem; font-size: 1rem; box-shadow: var(--shadow-sm); }
.accred .badge small { display: block; font-weight: 500; font-size: .62rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }

/* CTA band */
.ctaband { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #14310a; border-radius: 0; }
.ctaband .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 54px 24px; }
.ctaband h2 { color: #122c08; margin: 0; }
.ctaband p { color: #1d3d0c; margin: .4rem 0 0; }

/* prose (interior content) */
.prose { max-width: 820px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; color: var(--blue); }
.layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.aside { position: sticky; top: 124px; }
.aside .box { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; }
.aside .box h4 { color: var(--blue); margin-bottom: .8rem; }
.aside .box.blue { background: var(--blue); color: #fff; }
.aside .box.blue h4, .aside .box.blue a { color: #fff; }
.aside .links { list-style: none; padding: 0; margin: 0; }
.aside .links li { margin: 0; border-bottom: 1px solid var(--line); }
.aside .links li:last-child { border-bottom: 0; }
.aside .links a { display: block; padding: .6rem 0; font-weight: 500; color: var(--body); font-size: .96rem; }
.aside .links a:hover { color: var(--blue); padding-left: 4px; }

/* news list */
.newslist { list-style: none; padding: 0; margin: 0; }
.newsitem { display: block; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; transition: all var(--t); color: inherit; }
.newsitem:hover { border-color: #d3e0e9; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.newsitem .date { font-size: .8rem; color: var(--green-dark); font-weight: 600; font-family: var(--head); text-transform: uppercase; letter-spacing: 1px; }
.newsitem h3 { margin: .35rem 0 .4rem; color: var(--ink); font-size: 1.15rem; }
.newsitem p { color: var(--muted); margin: 0; font-size: .96rem; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--head); font-weight: 500; font-size: .92rem; color: var(--ink); margin-bottom: .4rem; }
.field input, .field textarea, .field select { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color var(--t), box-shadow var(--t); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,69,110,.12); }
.infoblock { display: flex; gap: 16px; margin-bottom: 22px; }
.infoblock .ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: var(--green-soft); color: var(--blue); display: grid; place-items: center; }
.infoblock h4 { margin: 0 0 .2rem; }
.infoblock p { margin: 0; color: var(--muted); }
.infoblock a { font-weight: 500; }
.map { border: 0; border-radius: var(--radius); width: 100%; height: 280px; box-shadow: var(--shadow-sm); }
.formnote { font-size: .82rem; color: var(--muted); }

/* ---------- factsheets ---------- */
.fs-jump { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 32px; font-size: .92rem; }
.fs-jump span { font-family: var(--head); font-weight: 600; color: var(--ink); margin-right: 6px; }
.fs-jump a { display: inline-block; margin: 2px 14px 2px 0; font-weight: 500; }
.fs-item { padding-bottom: 28px; margin-bottom: 32px; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.fs-item:last-of-type { border-bottom: 0; }
.fs-item h2 { color: var(--blue); font-size: 1.5rem; }
.fs-disclaimer { font-size: .88rem; color: var(--muted); background: var(--green-soft); border-left: 3px solid var(--green); padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.aside .links a.is-current { color: var(--blue); font-weight: 600; }

/* ---------- footer ---------- */
.footer { background: var(--blue-darkest); color: #aebecb; padding: 70px 0 0; font-size: .94rem; }
.footer a { color: #cdd9e2; }
.footer a:hover { color: var(--green); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer h5 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; }
.footer__logo img { height: 52px; margin-bottom: 18px; }
.footer__contact p { margin: 0 0 .6rem; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cdd9e2; transition: all var(--t); }
.socials a:hover { background: var(--green); color: #14310a; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .82rem; color: #8197a8; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__legal { font-size: .78rem; color: #6f8597; padding-bottom: 26px; line-height: 1.7; }
.footer__credit { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; text-align: center; font-size: .8rem; color: #7e93a4; }
.footer__credit a { color: var(--green); font-weight: 500; }
.footer__credit a:hover { color: #fff; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; padding: 64px 0; }
  .split, .contact-grid, .layout { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
  .aside { position: static; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 30px; }

  .burger { display: flex; }
  .nav__cta .btn { display: none; }
  .nav__menu {
    position: fixed; inset: 104px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; gap: 0; padding: 12px 16px 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); max-height: calc(100vh - 104px); overflow-y: auto;
    transform: translateY(-130%); transition: transform var(--t); display: flex;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu > li > a { padding: .85rem .4rem; border-radius: 0; border-bottom: 1px solid var(--line); justify-content: space-between; }
  .dropdown__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 8px 12px; min-width: auto; display: none; }
  .dropdown.open .dropdown__menu { display: block; }
  .nav__menu .caret { transition: transform var(--t); }
  .dropdown.open .caret { transform: rotate(-135deg); margin-top: 3px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .ctaband .container { flex-direction: column; align-items: flex-start; text-align: left; }
  .topbar .container { justify-content: center; gap: 14px; }
  .hero__stats { grid-template-columns: repeat(3,1fr); }
}

/* ---------- resources ---------- */
.res-group { padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.res-group:last-of-type { border-bottom: 0; }
.res-group__head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.res-group__head .ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: var(--green-soft); color: var(--blue); display: grid; place-items: center; }
.res-group__head h2 { font-size: 1.35rem; color: var(--blue); margin-bottom: .2rem; }
.res-group__head p { color: var(--muted); margin: 0; font-size: .95rem; }
.res-links { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.res-links li { margin: 0; }
.res-links a { display: block; padding: .5rem .8rem .5rem 1.5rem; border-radius: 8px; position: relative; font-weight: 500; color: var(--body); font-size: .95rem; transition: background var(--t), color var(--t); }
.res-links a::before { content: "\2192"; position: absolute; left: .55rem; color: var(--green-dark); }
.res-links a:hover { background: var(--bg-alt); color: var(--blue); }
.res-cal { list-style: none; padding: 0; margin: 0; }
.res-cal li { display: flex; gap: 16px; padding: .5rem 0; border-bottom: 1px dashed var(--line); margin: 0; }
.res-cal li:last-child { border-bottom: 0; }
.res-cal__d { flex: 0 0 140px; font-family: var(--head); font-weight: 600; color: var(--blue); font-size: .92rem; }
.res-cal__t { color: var(--body); font-size: .95rem; }
@media (max-width: 600px) { .res-links { grid-template-columns: 1fr; } .res-cal li { flex-direction: column; gap: 2px; } .res-cal__d { flex: none; } }

/* ---------- self-hosted fonts (OFL — see fonts/) ---------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-latin-700-normal.woff2") format("woff2"); }

/* ---------- accessibility: skip link + focus ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--blue); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 8px 0; font-family: var(--head); font-weight: 600; }
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 3px; }
.btn:focus-visible, .nav__menu a:focus-visible { outline-offset: 3px; }

/* ---------- homepage single-column sections + notice + about photos ---------- */
.single { max-width: 760px; margin: 0 auto; }
.section--notice { background: var(--green-soft); padding: 16px 0; border-top: 1px solid #e3edd2; border-bottom: 1px solid #e3edd2; }
.notice { display: flex; align-items: center; gap: 14px; justify-content: center; }
.notice p { margin: 0; color: var(--ink); font-size: .98rem; }
.notice__ico { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--green-dark); display: grid; place-items: center; }
.notice__ico svg { width: 20px; height: 20px; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 1.4rem 0 .4rem; }
.about-photos img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (max-width: 600px) { .about-photos { grid-template-columns: 1fr; } .notice { flex-direction: column; text-align: center; } }

/* ---------- directors ---------- */
.directors { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 1.4rem 0 .4rem; }
.director { margin: 0; }
.director img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.director figcaption { margin-top: .6rem; font-family: var(--head); }
.director figcaption strong { display: block; color: var(--ink); font-weight: 600; }
.director figcaption span { color: var(--muted); font-size: .9rem; }
@media (max-width: 600px) { .directors { grid-template-columns: 1fr; } }
