:root {
  --navy: #071c3d;
  --navy-soft: #12335f;
  --blue: #24558c;
  --gold: #c8a65a;
  --gold-light: #eadcb9;
  --ink: #142238;
  --muted: #5d6b7d;
  --line: #d9e0e9;
  --cloud: #f2f5fa;
  --paper: #ffffff;
  --success: #146c43;
  --error: #a12626;
  --shadow: 0 24px 70px rgba(7, 28, 61, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 100;
  padding: 10px 16px; background: var(--navy); color: white; border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(217, 224, 233, 0.9);
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(18px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 32px; }
.brand { flex: 0 0 auto; display: block; width: 156px; height: 58px; overflow: hidden; text-decoration: none; }
.brand img { width: 156px; height: 156px; max-width: none; object-fit: contain; transform: translateY(-49px); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav a {
  position: relative; color: var(--navy); text-decoration: none; font-size: 0.86rem;
  font-weight: 700; line-height: 1; letter-spacing: 0.045em; text-transform: uppercase;
}
.site-nav > a:not(.nav-cta), .nav-parent { height: 46px; display: inline-flex; align-items: center; }
.nav-dropdown { position: relative; height: 46px; display: flex; align-items: center; }
.nav-parent {
  position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 0;
  border: 0; background: transparent; color: var(--navy); cursor: pointer;
  font-size: .86rem; font-weight: 700; line-height: 1; letter-spacing: .045em; text-transform: uppercase;
}
.nav-parent span { position: relative; width: 14px; height: 14px; flex: 0 0 14px; overflow: hidden; font-size: 0; }
.nav-parent span::before {
  content: ""; position: absolute; left: 4px; top: 2px; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 180ms ease, top 180ms ease;
}
.nav-parent::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right 180ms ease;
}
.nav-dropdown:hover .nav-parent::after, .nav-dropdown:focus-within .nav-parent::after,
.nav-parent[aria-current="page"]::after { right: 0; }
.nav-dropdown:hover .nav-parent span::before, .nav-dropdown:focus-within .nav-parent span::before,
.nav-dropdown.is-open .nav-parent span::before { top: 6px; transform: rotate(225deg); }
.nav-submenu {
  position: absolute; top: calc(100% + 10px); left: -22px; z-index: 10; width: 365px;
  padding: 12px; display: grid; gap: 3px; border: 1px solid var(--line); border-radius: 16px;
  background: white; box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(-8px); pointer-events: none; transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -22px; height: 24px; }
.nav-dropdown:hover .nav-submenu, .nav-dropdown:focus-within .nav-submenu, .nav-dropdown.is-open .nav-submenu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.site-nav .nav-submenu a {
  padding: 11px 12px; border-radius: 9px; font-size: .83rem; line-height: 1.35;
  letter-spacing: .015em; text-transform: none; transition: background 160ms ease, color 160ms ease, padding-left 160ms ease;
}
.site-nav .nav-submenu a:hover, .site-nav .nav-submenu a:focus-visible, .site-nav .nav-submenu a[aria-current="page"] { padding-left: 16px; background: var(--cloud); }
.site-nav .nav-submenu a::after { display: none; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right 180ms ease;
}
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta)[aria-current="page"]::after { right: 0; }
.site-nav > a:not(.nav-cta):focus-visible, .nav-parent:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border: 1px solid var(--navy); border-radius: 999px;
  background: var(--navy); color: white !important; text-decoration: none; font-weight: 750;
  letter-spacing: 0.02em; cursor: pointer; transition: transform 180ms ease, background 180ms ease;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); background: var(--navy-soft); }
.button.secondary { background: transparent; color: var(--navy) !important; }
.button.secondary:hover { background: var(--cloud); }
.button.gold { background: var(--gold); border-color: var(--gold); color: var(--navy) !important; }
.menu-button { display: none; margin-left: auto; padding: 10px; border: 0; background: transparent; }
.menu-button span { display: block; width: 25px; height: 2px; margin: 6px; background: var(--navy); }

.hero {
  position: relative; overflow: hidden; min-height: 670px; display: grid; align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(3,19,42,.96) 0%, rgba(4,27,57,.9) 40%, rgba(4,30,62,.6) 68%, rgba(3,22,47,.28) 100%),
    linear-gradient(180deg, rgba(2,15,33,.06), rgba(2,15,33,.32)),
    url('/assets/images/sydney-harbour-pejman-ajorlou.jpg') center 55% / cover no-repeat;
}
.hero-grid { position: relative; z-index: 1; display: flex; align-items: center; padding: 56px 0; }
.hero-grid > div { width: min(58%, 760px); }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3, h4 { color: var(--navy); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
.hero h1 { max-width: 760px; margin: 0 0 20px; color: white; font-size: clamp(3rem, 4vw, 4.3rem); line-height: .98; letter-spacing: -.05em; }
.hero h1 span { color: var(--gold-light); }
.hero-copy { max-width: 700px; color: #dbe7f5; font-size: clamp(1rem, 1.2vw, 1.13rem); line-height: 1.55; }
.hero-copy p { margin: 0 0 13px; }
.hero-copy p:last-child { margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 23px; }
.hero .button.secondary { border-color: rgba(255,255,255,.55); color: white !important; }
.hero .button.secondary:hover { background: rgba(255,255,255,.1); }

@media (min-width: 981px) {
  .hero { height: calc(100svh - 86px); min-height: 650px; max-height: 820px; }
  .hero-grid { height: 100%; }
}

.page-hero { padding: 92px 0 78px; background: linear-gradient(135deg, var(--cloud), #fff 58%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -.055em; }
.page-hero p:last-child { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.15rem; }
.solutions-hero { position: relative; overflow: hidden; padding: 116px 0 108px; border-bottom: 0; color: white; background: var(--navy); }
.solutions-hero::after { content: ""; position: absolute; right: -9vw; bottom: -31vw; width: 48vw; height: 48vw; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02); }
.solutions-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr .55fr; gap: 70px; align-items: end; }
.solutions-hero .eyebrow { color: var(--gold-light); }
.solutions-hero h1 { max-width: 850px; color: white; font-size: clamp(3.6rem, 6.8vw, 6.6rem); line-height: .96; }
.solutions-hero p:last-child { max-width: 360px; margin: 0 0 10px; padding-left: 26px; border-left: 2px solid var(--gold); color: #dbe5f1; font-size: 1.17rem; }
section[id] { scroll-margin-top: 105px; }
.section { padding: 105px 0; }
.section.soft { background: var(--cloud); }
.section.dark { background: var(--navy); color: #dce6f3; }
.section.dark h2, .section.dark h3 { color: white; }
.cta-section { padding: 88px 0; }
.cta-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(54px, 9vw, 118px); align-items: center; }
.cta-grid h2 { max-width: 480px; margin: 0; color: white; font-size: clamp(3.1rem, 5.2vw, 4.8rem); letter-spacing: -.045em; }
.cta-copy { align-self: center; }
.cta-copy p { max-width: 650px; margin: 0 0 26px; color: #bdcada; font-size: 1.18rem; }
.section-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; margin-bottom: 55px; }
.section-heading h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -.045em; }
.section-heading .lead { max-width: 670px; margin: 8px 0 0; color: var(--muted); font-size: 1.18rem; }
.home-about-copy .lead { margin-bottom: 0; }
.home-about-section { padding-bottom: 55px; }
.home-about-section .section-heading { margin-bottom: 0; }
.home-explore-section { padding-top: 76px; padding-bottom: 82px; background: var(--cloud); }
.explore-heading { max-width: 760px; margin-bottom: 42px; }
.explore-heading .eyebrow { margin-bottom: 12px; }
.explore-heading h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.5rem); letter-spacing: -.045em; }
.explore-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.explore-card {
  position: relative; display: flex; min-height: 330px; padding: 38px; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); background: white;
  box-shadow: 0 14px 38px rgba(7, 28, 61, .055); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.explore-card::before { content: ""; position: absolute; left: 38px; top: 0; width: 58px; height: 4px; background: var(--gold); }
.explore-card:hover { transform: translateY(-4px); border-color: #c7d2e1; box-shadow: 0 20px 45px rgba(7, 28, 61, .09); }
.explore-category { margin: 0 0 22px; color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.explore-card h3 { max-width: 540px; margin: 0 0 16px; font-size: clamp(1.75rem, 3vw, 2.35rem); letter-spacing: -.025em; }
.explore-card > p:not(.explore-category) { max-width: 610px; margin: 0 0 28px; color: var(--muted); }
.explore-link { display: inline-flex; width: fit-content; align-items: center; gap: 9px; margin-top: auto; color: var(--navy); font-weight: 800; text-decoration: none; }
.explore-link span { transition: transform 180ms ease; }
.explore-link:hover span, .explore-link:focus-visible span { transform: translateX(4px); }
.explore-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 3px; }
.explore-document-links { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-top: auto; }
.explore-document-links .explore-link { margin-top: 0; }
.about-page-section { min-height: 560px; display: grid; align-items: center; background: linear-gradient(135deg, #f7f9fc, #fff 58%); }
.about-page-grid { margin-bottom: 0; align-items: start; }
.about-page-grid h1 { margin: 0; font-size: clamp(3.7rem, 6vw, 5.8rem); letter-spacing: -.055em; }
.about-page-grid .about-page-copy { max-width: 760px; margin-top: 8px; font-size: clamp(1.12rem, 1.8vw, 1.3rem); line-height: 1.8; }
.dark .section-heading .lead { color: #bdcada; }
.copy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.copy-grid p { margin-top: 0; }
.large-copy { font-size: clamp(1.35rem, 2.5vw, 1.85rem); line-height: 1.5; color: var(--navy); }
.solutions-overview-section { padding-top: 82px; padding-bottom: 88px; color: var(--muted); background: var(--cloud); }
.solutions-overview-panel { padding: 0; }
.solutions-intro { display: block; }
.solutions-intro .large-copy { max-width: 1040px; margin: 0 auto; color: var(--navy); font-family: inherit; font-size: clamp(1.35rem, 1.9vw, 1.55rem); line-height: 1.58; text-align: center; }
.partner-roles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; margin-top: 62px; }
.partner-roles article { min-width: 0; padding: 0; }
.partner-roles h3 { margin: 0 0 18px; color: var(--navy); font-family: inherit; font-size: 1.45rem; font-weight: 500; text-align: center; }
.partner-roles p { max-width: 560px; margin: 0 auto; color: var(--muted); line-height: 1.55; text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 35px rgba(7,28,61,.05); }
.card .number { color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .16em; }
.card h3 { margin: 18px 0 14px; font-size: 1.65rem; }
.card p:last-child { margin-bottom: 0; }
.feature-card { padding: 45px; background: var(--navy); color: white; border-radius: var(--radius); }
.feature-card h3 { color: white; }
.solutions-profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 70px; margin-top: 78px; }
.profile-card { min-width: 0; padding: 0; text-align: center; }
.profile-card + .profile-card { padding-left: 0; }
.profile-card h3 { margin: 0 0 18px; color: var(--navy); font-family: inherit; font-size: 1.45rem; font-weight: 500; }
.turnaround-card { grid-column: 1 / -1; margin-top: 72px; padding: 0; color: var(--muted); text-align: center; }
.sla-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; }
.sla-grid > div { padding: 0; }
.sla-grid p { margin: 0 0 7px; }
.sla-grid p:first-child { color: var(--navy); font-size: 1.25rem; font-weight: 500; }
.sla-grid p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.solutions-white-label { padding-top: 112px; padding-bottom: 112px; }
.service-page-copy { max-width: 900px; margin-bottom: 58px; }
.service-page-copy .lead { margin: 0; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.5; }
.management-grid { counter-reset: management; }
.management-grid .card { min-height: 285px; padding: 38px; border-top: 4px solid var(--gold); box-shadow: none; }
.management-grid .card h3 { font-size: 1.8rem; }
.program-section { position: relative; overflow: hidden; padding-top: 112px; padding-bottom: 112px; }
.program-section::before { content: ""; position: absolute; left: -260px; top: -280px; width: 580px; height: 580px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.program-section .shell { position: relative; }
.program-page-intro { max-width: 920px; margin-bottom: 54px; }
.program-page-intro p { margin: 0; color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); line-height: 1.5; }
.program-section .copy-grid { padding-top: 42px; border-top: 1px solid rgba(255,255,255,.18); }
.program-section .copy-grid p { color: #bdcada; }
.document-section { background: linear-gradient(180deg, #fff, var(--cloud)); }
.document-heading { display: block; }
.document-heading h2 { max-width: 760px; }
.list-clean { padding: 0; margin: 0; list-style: none; }
.list-clean li { padding: 2px 0; border: 0; color: var(--muted); line-height: 1.45; }
.dark .list-clean li { border-color: rgba(255,255,255,.17); }

.partners-section { padding-top: 45px; padding-bottom: 88px; }
.partners-heading { display: block; margin-bottom: 42px; text-align: left; }
.partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; align-items: center; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner {
  min-width: 0; height: 116px; padding: 12px; overflow: hidden; display: grid; place-items: center; background: white;
}
.partner img { width: 100%; max-height: 84px; object-fit: contain; mix-blend-mode: multiply; }
.partner:nth-child(1) img, .partner:nth-child(2) img { transform: scale(1.45); }
.partner:nth-child(3) img { transform: scale(1.22); }
.partner:nth-child(5) img { transform: scale(1.12); }
.partner span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { padding: 36px; border-radius: var(--radius); background: var(--cloud); }
.stat h3 { margin-top: 0; font-size: 1.8rem; }
.stat strong { display: block; margin-top: 14px; color: var(--navy); font-size: 1.1rem; }

.pdf-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.pdf-frame { width: 100%; height: 690px; border: 0; background: #e9edf2; }
.pdf-mobile { display: none; padding: 42px 24px; text-align: center; background: var(--cloud); }

.policy { max-width: 900px; }
.policy .policy-page-title { margin: 0 0 38px; font-size: clamp(2.8rem, 5vw, 4.5rem); letter-spacing: -.045em; }
.policy h2 { margin-top: 65px; font-size: 2rem; }
.policy h3 { margin-top: 42px; font-size: 1.45rem; }
.policy ul { padding-left: 24px; }
.policy address { font-style: normal; }

.contact-hero { padding-top: 68px; padding-bottom: 58px; }
.contact-hero p:last-child { margin-top: 18px; }
.contact-content-section { padding-top: 58px; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.contact-panel { padding: 0 0 38px; border-bottom: 1px solid var(--line); }
.contact-panel h3 { color: var(--navy); }
.contact-panel a { color: var(--navy); }
.contact-details-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(56px, 9vw, 120px); align-items: start; }
.contact-details-grid > div { min-width: 0; }
.contact-primary { display: grid; gap: 26px; }
.contact-details-grid h3 { margin: 0 0 10px; font-size: 1.18rem; }
.contact-details-grid p { margin: 0; color: var(--muted); }
.contact-hours p { display: grid; gap: 4px; }
.contact-hours p span { white-space: nowrap; }
.enquiry-form { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cloud); }
.form-intro h2 { margin: 0 0 12px; font-size: clamp(2.3rem, 4vw, 3.8rem); }
.form-intro p { margin: 0 0 34px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 24px; }
.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field.address-grid { display: grid; grid-template-columns: 1.5fr .72fr .72fr; gap: 24px; }
.field label { display: block; margin: 0 0 8px; color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field label small { margin-left: 8px; color: #7787a1; font-size: .75rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 58px; padding: 14px 17px; border: 1px solid #cad4e2; border-radius: 14px;
  color: var(--ink); background: white; outline: 0; transition: border 160ms ease, box-shadow 160ms ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='m5 7 4 4 4-4' stroke='%2324558c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-size: 18px 18px;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(36,85,140,.12); }
.money-input { display: grid; grid-template-columns: auto 1fr; }
.money-input span { display: grid; place-items: center; padding: 0 16px; border: 1px solid #cad4e2; border-right: 0; border-radius: 14px 0 0 14px; color: var(--blue); background: #f7f9fc; font-weight: 800; }
.money-input input { border-radius: 0 14px 14px 0; }
.enquiry-form > p { margin: 18px 0 0; }
.form-actions { display: grid; justify-items: center; gap: 12px; margin-top: 20px; text-align: center; }
.form-actions .button {
  min-width: 230px; min-height: 56px; padding: 0 34px; border-color: var(--navy);
  color: white !important; background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 28, 61, .2); font-weight: 800; letter-spacing: .035em;
}
.form-actions .button:hover { background: var(--navy-soft); box-shadow: 0 15px 32px rgba(7, 28, 61, .27); }
.form-actions .button:focus-visible { outline: 3px solid rgba(36, 85, 140, .28); outline-offset: 4px; }
.form-status { min-height: 1.6em; margin: 0; font-weight: 650; }
.form-status:empty { display: none; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-wrap { min-height: 0; margin: 0; }
.turnstile-wrap:not(:empty) { min-height: 66px; margin-top: 22px; }

.site-footer { padding: 68px 0 34px; color: #bdcada; background: #041329; }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-brand { display: block; width: 180px; height: 72px; overflow: hidden; border-radius: 0; background: transparent; }
.footer-brand img { width: 180px; height: 180px; max-width: none; object-fit: contain; transform: translateY(-54px); }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.footer-links a { color: white; text-decoration: none; }
.legal { max-width: 1020px; margin-inline: auto; padding-top: 32px; text-align: center; font-size: .78rem; line-height: 1.7; }
.legal p { margin: 9px 0; }

.reveal-ready { opacity: 1; transform: none; transition: opacity 500ms ease, transform 500ms ease; }
.reveal-ready.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 82px; padding: 24px; flex-direction: column; align-items: stretch; gap: 18px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { margin-top: 6px; }
  .nav-dropdown { width: 100%; height: auto; display: block; }
  .nav-parent { width: 100%; justify-content: space-between; }
  .nav-submenu {
    position: static; width: 100%; margin-top: 12px; padding: 7px 0 0 14px; display: none;
    border: 0; border-left: 2px solid var(--gold-light); border-radius: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition: none;
  }
  .nav-submenu::before { display: none; }
  .nav-dropdown:hover .nav-submenu, .nav-dropdown:focus-within .nav-submenu { display: none; }
  .nav-dropdown.is-open .nav-submenu { display: grid; }
  .hero-grid, .section-heading, .contact-layout, .footer-top, .cta-grid { grid-template-columns: 1fr; }
  .cta-grid { gap: 32px; }
  .hero-grid > div { width: min(100%, 760px); }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .solutions-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .solutions-hero p:last-child { max-width: 580px; }
  .solutions-profile-grid { grid-template-columns: 1fr 1fr; }
  .sla-grid { grid-template-columns: 1fr 1fr; }
  .contact-panel { position: static; }
  .contact-details-grid { grid-template-columns: minmax(0, 1fr) minmax(290px, .7fr); gap: 42px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 74px; }
  .brand { width: 126px; height: 52px; }
  .brand img { width: 126px; height: 126px; transform: translateY(-38px); }
  .site-nav { top: 72px; }
  .hero { min-height: 610px; }
  .hero-grid { padding: 80px 0; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .hero { background-position: center, center, 62% center; }
  .about-page-section { min-height: 0; }
  .page-hero { padding: 70px 0 58px; }
  .solutions-hero { padding: 82px 0 76px; }
  .solutions-hero h1 { font-size: clamp(3.25rem, 15vw, 4.8rem); }
  .solutions-hero p:last-child { padding-left: 18px; font-size: 1.05rem; }
  .section { padding: 75px 0; }
  .contact-hero { padding-top: 54px; padding-bottom: 46px; }
  .contact-content-section { padding-top: 40px; }
  .contact-panel { padding-bottom: 32px; }
  .contact-details-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-primary { gap: 24px; }
  .solutions-overview-section, .solutions-white-label, .program-section { padding-top: 72px; padding-bottom: 72px; }
  .solutions-intro .large-copy { font-size: 1.14rem; }
  .solutions-overview-panel { padding: 0; }
  .partner-roles { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
  .solutions-profile-grid { grid-template-columns: 1fr; }
  .profile-card { padding: 0; }
  .profile-card + .profile-card { margin-top: 40px; padding-left: 0; }
  .turnaround-card { margin-top: 50px; }
  .sla-grid { grid-template-columns: 1fr; }
  .management-grid .card { min-height: 0; }
  .home-about-section { padding-bottom: 40px; }
  .home-explore-section { padding-top: 66px; padding-bottom: 68px; }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { min-height: 0; padding: 32px 26px; }
  .explore-card::before { left: 26px; }
  .partners-section { padding-top: 35px; }
  .partners-heading { margin-bottom: 32px; }
  .cta-section { padding: 68px 0; }
  .cta-grid h2 { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .copy-grid, .cards, .stats, .form-grid { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .partner { height: 105px; }
  .section-heading { gap: 18px; margin-bottom: 38px; }
  .partner { min-height: 145px; }
  .pdf-frame { display: none; }
  .pdf-mobile { display: block; }
  .enquiry-form { padding: 26px 18px; }
  .field.address-grid { grid-template-columns: 1fr; }
  .form-actions .button { width: min(100%, 280px); }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal-ready { opacity: 1; transform: none; }
}
