
:root {
  --navy: #081326;
  --navy-2: #101d34;
  --ink: #142033;
  --muted: #697282;
  --line: rgba(13, 27, 49, 0.12);
  --paper: #f7f3eb;
  --paper-2: #fbfaf7;
  --white: #ffffff;
  --gold: #b99255;
  --gold-2: #d7bd83;
  --shadow: 0 24px 70px rgba(6, 18, 38, 0.14);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1180px;
  --section: clamp(72px, 8vw, 128px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper-2);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 44px), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 19, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo-placeholder {
  width: 190px;
  min-width: 190px;
  height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(8, 19, 38, 0.28);
  border-radius: 14px;
  padding: 0 18px;
  background: rgba(255,255,255,0.72);
  letter-spacing: 0.12em;
}
.logo-placeholder strong {
  font-size: 15px;
  line-height: 1;
  color: var(--navy);
  font-weight: 760;
}
.logo-placeholder span {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-desktop { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 560; }
.nav-desktop a, .nav-trigger { color: rgba(8, 19, 38, 0.78); transition: color .2s ease; }
.nav-desktop a:hover, .nav-trigger:hover, .nav-desktop a.active { color: var(--navy); }
.nav-item { position: relative; }
.nav-trigger { cursor: default; padding: 28px 0; }
.dropdown {
  position: absolute;
  top: 58px;
  left: -22px;
  width: 320px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown a { display: block; padding: 12px 14px; border-radius: 12px; line-height: 1.35; color: rgba(8, 19, 38, 0.78); }
.dropdown a:hover { background: #f4efe4; color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-enquiry-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(215, 189, 131, 0.62);
  border-radius: 999px;
  background: rgba(215, 189, 131, 0.14);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.header-enquiry-link:hover { background: var(--gold-2); color: var(--navy); transform: translateY(-1px); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); border-radius: 50%; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--white); margin: 4px auto; }
.mobile-nav { display: none; padding: 18px 22px 28px; border-top: 1px solid rgba(255,255,255,.1); background: var(--navy); color: rgba(255,255,255,.8); }
.mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-weight: 620; }
.mobile-nav small { display: block; margin: 22px 0 8px; color: rgba(255,255,255,.42); letter-spacing: .12em; text-transform: uppercase; }
.mobile-enquiry-link {
  margin-top: 22px;
  display: inline-flex !important;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 13px 18px !important;
  border: 1px solid rgba(215,189,131,.62) !important;
  border-radius: 999px;
  background: rgba(215,189,131,.14);
  color: var(--gold-2) !important;
}

.hero-home, .page-hero {
  background:
    radial-gradient(circle at top left, rgba(185, 146, 85, 0.14), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, #101d34 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-grid, .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(72px, 9vw, 128px) 0;
}
.page-hero-grid { min-height: 540px; }
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 740;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
h1, h2, h3 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(44px, 6vw, 76px); line-height: .98; max-width: 900px; }
h2 { font-size: clamp(34px, 4.2vw, 54px); line-height: 1.04; }
h3 { font-size: clamp(21px, 2vw, 27px); line-height: 1.15; }
.hero-copy p { margin: 26px 0 0; max-width: 660px; color: rgba(255,255,255,.76); font-size: clamp(17px, 1.55vw, 20px); line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #111827; border-color: var(--gold); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.btn-light { color: var(--navy); background: var(--white); border-color: var(--white); }
.hero-image {
  position: relative;
  min-height: 430px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  isolation: isolate;
}
.hero-image::after, .image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,19,38,.02), rgba(8,19,38,.36));
  pointer-events: none;
}
.hero-image img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transform: scale(1.02); }

.section { padding: var(--section) 0; }
.section-muted { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr); }
.split.compact { align-items: start; }
.section-copy { max-width: 720px; }
.section-copy .eyebrow, .section-heading .eyebrow { color: var(--gold); }
.section-copy p, .section-heading p, .card p, .process-card p, .article-card p, .cta-panel p, .advisory-note p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.section-copy p { margin: 22px 0 0; }
.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 4vw, 56px);
}
.section-heading.narrow { max-width: 720px; }
.section-heading p { margin: 18px 0 0; }
.image-panel {
  position: relative;
  margin: 0;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d7dbe2;
}
.image-panel img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.image-panel span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 72%;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(8, 19, 38, .72);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.cards {
  display: grid;
  gap: 20px;
}
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .process-card, .article-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 38px rgba(8, 19, 38, .04);
}
.card-rule {
  width: 46px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--gold);
}
.card h3, .process-card h3, .article-card h3 { color: var(--navy); }
.card p, .process-card p, .article-card p { margin: 18px 0 0; font-size: 15px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.process-card { min-height: 220px; background: var(--white); }
.process-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 760;
  letter-spacing: .12em;
}
.clean-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 560;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.article-card { min-height: 210px; background: var(--white); }
.article-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cta-section { padding-top: 0; }
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(185,146,85,.18), transparent 38%),
    var(--navy);
  box-shadow: var(--shadow);
}
.cta-panel h2 { max-width: 820px; }
.cta-panel p { max-width: 780px; color: rgba(255,255,255,.74); margin: 18px 0 0; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.contact-note strong { display: block; color: var(--navy); }
.contact-note span, .contact-note a { color: var(--muted); }
.advisory-note {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}
.advisory-note h3 { color: var(--navy); font-size: 24px; }
.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 720;
}
.enquiry-form label span { color: var(--muted); font-weight: 500; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(8,19,38,.18);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  border-color: rgba(185,146,85,.82);
  box-shadow: 0 0 0 4px rgba(185,146,85,.12);
}
.checkbox { display: flex !important; grid-template-columns: auto 1fr; gap: 12px !important; align-items: start; font-weight: 500 !important; color: var(--muted) !important; }
.checkbox input { width: 18px; margin-top: 3px; }
.form-message { display: none; margin: 0; color: var(--muted); font-size: 14px; }
.form-message.visible { display: block; }
.site-footer {
  padding: 64px 0 34px;
  color: rgba(255,255,255,.76);
  background: var(--navy);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) repeat(3, minmax(140px, .32fr));
  gap: 44px;
  align-items: start;
}
.footer-brand-logo {
  width: 286px;
  max-width: 100%;
  height: auto;
}
.footer-logo p { max-width: 420px; margin: 22px 0 0; color: rgba(255,255,255,.66); }
.footer-col h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.footer-col a { display: block; margin: 10px 0; color: rgba(255,255,255,.74); font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  color: rgba(255,255,255,.52);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-nav.open { display: block; }
  .hero-grid, .page-hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid, .page-hero-grid { min-height: auto; }
  .hero-image, .image-panel { min-height: 360px; }
  .cards.three, .cards.four, .process-grid, .article-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { height: 78px; gap: 14px; }
  .brand { min-width: 174px; }
  .brand-logo { width: 184px; max-height: 56px; }
  .header-enquiry-link { display: none; }
  h1 { font-size: clamp(38px, 11vw, 52px); }
  h2 { font-size: clamp(30px, 9vw, 40px); }
  .hero-grid, .page-hero-grid { padding: 54px 0 70px; gap: 34px; }
  .hero-image, .image-panel { min-height: 300px; border-radius: 20px; }
  .cards.three, .cards.four, .process-grid, .article-grid, .clean-list { grid-template-columns: 1fr; }
  .card, .process-card, .article-card { min-height: auto; padding: 24px; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .actions { width: 100%; }
  .actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* Brand integration overrides */
.site-header {
  background: rgba(8, 19, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
  height: 92px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 218px;
}
.brand-logo {
  width: 232px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}
.nav-desktop a,
.nav-trigger {
  color: rgba(255, 255, 255, 0.72);
}
.nav-desktop a:hover,
.nav-trigger:hover,
.nav-desktop a.active {
  color: var(--white);
}
.dropdown a {
  color: rgba(8, 19, 38, 0.78);
}
.dropdown a:hover {
  color: var(--navy);
}
.footer-brand-logo {
  width: 286px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1040px) {
  .nav-desktop { display: none; }
  .header-enquiry-link { display: inline-flex; }
}
@media (max-width: 680px) {
  .header-inner { height: 78px; gap: 14px; }
  .brand { min-width: 174px; }
  .brand-logo { width: 184px; max-height: 56px; }
  .header-enquiry-link { display: none; }
}
