* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a33;
  --muted: #5a6b75;
  --sand: #f7f2ea;
  --ocean: #114b5f;
  --sun: #f4c542;
  --mist: #e7eef2;
  --clay: #d7c7b5;
  --leaf: #2f5d50;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--ocean);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 6%;
  background: var(--mist);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.cta-button {
  background: var(--ocean);
  color: #ffffff;
}

.ghost-button {
  background: transparent;
  border-color: var(--ocean);
  color: var(--ocean);
}

.split-section {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 70px 6%;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split-visual {
  background: var(--sand);
  padding: 18px;
  border-radius: 24px;
}

.visual-frame {
  background: var(--clay);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.headline {
  font-size: 2.4rem;
  line-height: 1.2;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.85rem;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  padding: 16px;
  background: var(--mist);
  border-radius: 14px;
  min-width: 160px;
}

.metric strong {
  font-size: 1.4rem;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: row;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6e2dc;
}

.service-card img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--ocean);
  padding-bottom: 2px;
}

.form-panel {
  background: var(--mist);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cdd6db;
  font-size: 1rem;
}

.split-background {
  background: var(--sand);
}

.quote {
  font-style: italic;
  background: #ffffff;
  padding: 18px;
  border-left: 4px solid var(--sun);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--ocean);
  color: #ffffff;
  padding: 16px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta button {
  background: #ffffff;
  color: var(--ocean);
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #111a21;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 14px;
  padding: 16px;
  width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-page {
  padding: 70px 12%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--mist);
  padding: 20px;
  border-radius: 16px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero {
  padding: 60px 8%;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-color: #1b2d3a;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-hero .headline,
.bg-hero .subhead,
.bg-hero .breadcrumbs {
  color: #ffffff;
}

.bg-sand {
  background-color: var(--sand);
}

.bg-mist {
  background-color: var(--mist);
}

.bg-finance {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-color: #20313b;
  background-size: cover;
  background-position: center;
}

.bg-adelaide {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
  background-color: #24333d;
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
