:root {
  --bg: #F3F7FC;
  --bg-light: #FAFCFF;
  --green-dark: #082B6F;
  --green-secondary: #075EB8;
  --green-button: #0759B6;
  --green-button-hover: #043F84;
  --white: #FFFFFF;
  --border: #CED9E8;
  
  --text-dark: #111A2D;
  --text-muted: #45566F;

  --font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 0.2s ease-out;
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 3px 12px rgba(8, 43, 111, 0.1);
  --shadow-md: 0 16px 38px rgba(8, 43, 111, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 8px;
  z-index: 10000;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid #087DD8;
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.2;
}
h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-top: 0; margin-bottom: 1.5rem; }
.lead { font-size: 1.25rem; color: var(--text-muted); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-center { text-align: center; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-padding { padding: 5rem 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }
.pb-4 { padding-bottom: 2rem; }
.py-5 { padding-top: 4rem; padding-bottom: 4rem; }

.d-block { display: block; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 3rem; }

.w-100 { width: 100%; }
.bg-light { background-color: var(--white); }
.bg-dark { background-color: var(--green-dark); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

.border { border: 1px solid var(--border); }
.border-top { border-top: 1px solid var(--border); }
.rounded { border-radius: 8px; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-padding { padding: 3rem 0; }
  .split-layout { flex-direction: column; }
}

a {
  color: var(--green-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--green-dark); }
.no-underline { text-decoration: none !important; color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn-primary {
  background-color: var(--green-button);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--green-button-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-secondary {
  background-color: var(--white);
  color: var(--green-dark);
  border-color: var(--border);
}
.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--green-secondary);
  color: var(--green-dark);
}
.btn-outline {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background-color: var(--green-dark);
  color: var(--white);
}
.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--green-dark);
}
.btn-text {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--green-button);
}
.link-arrow:hover {
  color: var(--green-dark);
}
.link-arrow::after {
  content: '→';
  margin-left: 0.25rem;
  transition: transform var(--transition-fast);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-fast);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  display: block;
  width: 220px;
  height: 68px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.nav-links > li > a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  position: relative;
}
.nav-links > li > a[aria-current="page"] {
  color: var(--green-button);
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green-button);
  transition: width var(--transition-fast);
}
.nav-links > li > a:hover::after, .nav-links > li > a[aria-current="page"]::after {
  width: 100%;
}

.has-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 0.5rem; }
.dropdown-toggle-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-toggle-btn .chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text-dark);
  transition: transform var(--transition-fast);
}
.dropdown-toggle-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}
.has-dropdown.active-dropdown .dropdown,
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
  font-size: 0.9375rem;
  display: block;
}
.dropdown a:hover {
  background-color: var(--bg);
  color: var(--green-button);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--green-dark);
  margin: 6px 0;
  transition: all 0.3s ease;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 80px 1.5rem 2rem;
}
.mobile-nav.is-open { right: 0; }
.body-lock { overflow: hidden; }
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav .nav-links {
  flex-direction: column;
  gap: 0;
}
.mobile-nav .nav-links > li {
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}
.mobile-nav .nav-links > li > a { display: inline-block; padding: 0.5rem 0; font-size: 1.125rem; }
.mobile-nav .dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: var(--bg);
  padding: 0;
  display: none;
  margin-top: 0.5rem;
}
.mobile-nav .has-dropdown.active-dropdown .dropdown {
  display: block;
}

@media (max-width: 900px) {
  .desktop-nav, .desktop-only { display: none; }
  .mobile-menu-btn { display: block; }
}

.breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--green-dark); }
.breadcrumbs [aria-current="page"] { color: var(--green-dark); font-weight: 500; }

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green-secondary);
}
.card-icon {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: var(--bg);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--green-dark);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--green-secondary);
  box-shadow: 0 0 0 3px rgba(7, 94, 184, 0.16);
}
.enquiry-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.enquiry-status {
  min-height: 1.5em;
  color: var(--text-muted);
}
.enquiry-form[aria-busy="true"] [data-enquiry-submit] {
  cursor: wait;
  opacity: 0.72;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(620px, 76vh, 820px);
  align-items: center;
  overflow: hidden;
  background: #061B3E;
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 47, 0.96) 0%, rgba(5, 33, 76, 0.88) 42%, rgba(5, 29, 66, 0.52) 70%, rgba(3, 16, 38, 0.64) 100%),
    linear-gradient(0deg, rgba(3, 18, 47, 0.5), transparent 45%);
  content: '';
}

.home-hero__rotator,
.home-hero__slide,
.home-hero__mesh {
  position: absolute;
  inset: 0;
}

.home-hero__rotator {
  z-index: -3;
}

.home-hero__slide {
  opacity: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: home-hero-cycle 18s ease-in-out infinite;
  animation-delay: var(--slide-delay);
  will-change: opacity, transform;
}

.home-hero__mesh {
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(92, 169, 245, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 169, 245, 0.22) 1px, transparent 1px);
  background-position: center;
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 78% 50%, black 0%, transparent 67%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
}

.home-hero__content {
  max-width: 760px;
}

.home-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.04;
  text-wrap: balance;
}

.home-hero .eyebrow {
  color: #BFDFFF;
}

.home-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  text-wrap: pretty;
}

.home-hero .btn-primary {
  background: #0A73D9;
  box-shadow: 0 12px 28px rgba(0, 25, 66, 0.34);
}

.home-hero .btn-primary:hover {
  background: #1590F2;
}

.home-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.home-hero .btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-dark);
}

.home-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.2rem;
}

.home-hero__signals span {
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 31, 71, 0.48);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

@keyframes home-hero-cycle {
  0%, 27% {
    opacity: 1;
    transform: scale(1.03);
  }
  34%, 100% {
    opacity: 0;
    transform: scale(1.11);
  }
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.split-content { flex: 1; }
.split-image { flex: 1; position: relative; }
.img-fluid { max-width: 100%; height: auto; display: block; }
.card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.styled-list { padding-left: 1.25rem; }
.styled-list li { margin-bottom: 0.5rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.faq-item summary {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { color: var(--text-muted); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border);
  top: 0;
  bottom: 0;
  left: 50px;
  margin-left: -1px;
}
.timeline-item {
  padding: 10px 40px 30px 80px;
  position: relative;
  background-color: inherit;
  width: 100%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: auto;
  background-color: var(--white);
  border: 4px solid var(--green-secondary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  left: 42px;
}
.timeline-year {
  position: absolute;
  left: -20px;
  top: 12px;
  font-weight: bold;
  color: var(--green-dark);
  background: var(--bg);
  z-index: 2;
  padding-right: 10px;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .footer-desc { color: var(--text-muted); font-size: 0.9375rem; }
.footer-logo { width: 240px; max-width: 100%; height: auto; object-fit: contain; }
.footer-links h3, .footer-contact h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--green-dark);
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--green-secondary); }
.social-links { display: flex; flex-direction: column; gap: 0.25rem; }
.social-label { color: var(--green-dark); font-weight: 500; }
.social-link-list { display: flex; flex-wrap: wrap; gap: 0.5rem 0.875rem; }
.social-link-list a { color: var(--text-muted); font-size: 0.8125rem; }
.social-link-list a:hover { color: var(--green-secondary); }
.office-location + .office-location { margin-top: 1rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }

.analytics-consent {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.analytics-consent[hidden] { display: none; }
.analytics-consent__content { max-width: 720px; }
.analytics-consent h2 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.analytics-consent p { margin-bottom: 0.5rem; color: var(--text-muted); }
.analytics-consent__content > a {
  color: var(--green-button);
  font-size: 0.875rem;
  font-weight: 600;
}
.analytics-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
  align-items: center;
}
.analytics-consent__actions .btn { white-space: nowrap; }

.eyebrow {
  display: block;
  color: var(--green-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-launcher {
  position: fixed;
  right: 0;
  left: auto;
  top: 50%;
  z-index: 1200;
  transform: translateY(-50%);
}

.contact-launcher__toggle {
  min-height: 156px;
  padding: 1rem 0.7rem;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: var(--green-button);
  box-shadow: var(--shadow-md);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  writing-mode: vertical-rl;
  transform: none;
}

.contact-launcher__toggle:hover,
.contact-launcher__toggle[aria-expanded="true"] {
  background: var(--green-button-hover);
}

.contact-launcher__panel {
  position: fixed;
  right: 4.25rem;
  left: auto;
  top: 50%;
  width: min(430px, calc(100vw - 6rem));
  max-height: calc(100vh - 2rem);
  padding: 1.25rem;
  overflow-y: auto;
  transform: translateY(-50%);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-launcher__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-launcher__header h2 {
  margin: 0.2rem 0 0;
  font-size: 1.5rem;
}

.contact-launcher__close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--green-dark);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-action-grid a {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.contact-action-grid a:hover {
  border-color: var(--green-secondary);
  background: var(--bg);
}

.contact-action-grid span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
}

.quick-enquiry-form-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.enquiry-form-shell--compact .grid-2 {
  grid-template-columns: 1fr;
}

.enquiry-form-shell--compact .form-group {
  margin-bottom: 0.85rem;
}

.enquiry-form-shell--compact .form-control {
  padding: 0.65rem 0.75rem;
}

.form-helper {
  line-height: 1.45;
}

.enquiry-draft {
  padding: 1rem;
  border: 1px solid #9CC0E8;
  border-radius: 8px;
  background: #EFF7FF;
}

.enquiry-draft h4 {
  margin-bottom: 0.5rem;
}

.enquiry-draft p {
  margin-bottom: 1rem;
}

.enquiry-edit {
  color: var(--green-button);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .logo img { width: 180px; height: 60px; }
}

@media (max-width: 600px) {
  .analytics-consent {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .analytics-consent__actions { justify-content: flex-end; }

  .contact-launcher {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
  }

  .contact-launcher__toggle {
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .contact-launcher__panel {
    top: auto;
    right: 1rem;
    bottom: 4.75rem;
    left: 1rem;
    width: auto;
    max-height: calc(100vh - 7rem);
    transform: none;
  }

  .contact-action-grid a {
    min-height: 68px;
  }
}

@media print {
  .site-header, .site-footer, .cta-banner, .contact-launcher { display: none !important; }
  body { background: white; color: black; }
  a { text-decoration: underline; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  body.js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .home-hero__slide {
    opacity: 0;
    animation: none !important;
    transform: none;
  }
  .home-hero__slide:first-child {
    opacity: 1;
  }
}
