@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --navy: #1F2A2E;
  --navy-soft: #1F2A2E;
  --ink: #1F2A2E;
  --muted: #8FBFD1;
  --soft-cream: #F6F1E8;
  --stone: #D7D2C8;
  --sage-grey: #AEBBB1;
  --sand: #F6F1E8;
  --cream: #F6F1E8;
  --white: #FFFFFF;
  --line: #D7D2C8;
  --shadow: 0 22px 56px rgba(31, 42, 46, 0.12);
  --radius: 18px;
  --hero-heading-color: #1F2A2E;
  --font-heading: "Plus Jakarta Sans", Arial, "Helvetica Neue", sans-serif;
  --font-body: "Manrope", Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-heading);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-weight: 800;
}

h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5.6vw, 5rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 46px));
  margin: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
}

.skip:focus {
  left: 10px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  width: min(1510px, calc(100% - 92px));
}

.nav-wrap {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(132px, 11vw, 176px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3.2vw, 50px);
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: #8FBFD1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal-scale {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition:
    opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal.is-visible,
.js .reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .reveal-delay-1 {
  transition-delay: 80ms;
}

.js .reveal-delay-2 {
  transition-delay: 160ms;
}

.js .reveal-delay-3 {
  transition-delay: 240ms;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(90deg, var(--white), var(--soft-cream));
}

.hero-layout {
  position: relative;
  width: min(1500px, calc(100% - 56px));
  min-height: clamp(470px, 55vh, 590px);
  overflow: hidden;
  border-radius: 0 0 34px 0;
}

.hero-background {
  position: absolute;
  inset: 0 0 0 28%;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 0 34px 0;
}

.hero-beach {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 7%,
    rgba(0, 0, 0, 0.22) 14%,
    rgba(0, 0, 0, 0.48) 22%,
    rgba(0, 0, 0, 0.72) 30%,
    rgba(0, 0, 0, 0.9) 39%,
    #000 48%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 7%,
    rgba(0, 0, 0, 0.22) 14%,
    rgba(0, 0, 0, 0.48) 22%,
    rgba(0, 0, 0, 0.72) 30%,
    rgba(0, 0, 0, 0.9) 39%,
    #000 48%,
    #000 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(46%, 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: clamp(470px, 55vh, 590px);
  padding: clamp(40px, 5vw, 68px) clamp(28px, 4.5vw, 62px) clamp(40px, 5vw, 68px) clamp(18px, 3.2vw, 48px);
  background: transparent;
  text-align: left;
}

.hero-copy > * {
  position: relative;
  z-index: 2;
}

.hero-rule {
  width: 44px;
  height: 2px;
  margin: 4px 0 24px;
  background: #8FBFD1;
}

.hero-person {
  position: absolute;
  right: 1.5%;
  bottom: 0;
  z-index: 3;
  width: auto;
  height: 88%;
  max-width: 38%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 14px 24px rgba(10, 25, 45, 0.12));
  pointer-events: none;
}

.centered-copy {
  max-width: 940px;
  padding: clamp(72px, 9vw, 132px) 0;
  text-align: center;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--hero-heading-color);
  font-size: clamp(2.35rem, 3.75vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.centered-copy.compact {
  max-width: 830px;
}

.centered-copy .lead,
.centered-copy p {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--navy-soft);
  max-width: 430px;
  margin-bottom: 0;
  letter-spacing: 0.18em;
  line-height: 1.65;
}

.lead {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  line-height: 1.55;
}

.hero .lead {
  max-width: 610px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.62;
}

.hero .button-row {
  justify-content: flex-start;
  margin-top: 28px;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 2px solid #8FBFD1;
  border-radius: 8px;
  background: #8FBFD1;
  color: var(--navy);
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.13);
}

.btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  box-shadow: none;
}

.btn.wide {
  width: 100%;
}

.hero .btn {
  background: #8FBFD1;
  border-color: #8FBFD1;
  color: var(--navy);
}

.hero .btn:hover {
  background: #79aebe;
  border-color: #79aebe;
  color: var(--navy);
}

.hero .btn.secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: #8FBFD1;
  color: var(--navy);
}

.hero .btn.secondary:hover {
  background: rgba(143, 191, 209, 0.18);
  border-color: #8FBFD1;
  color: var(--navy);
}

.intro-section,
.content-section {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--white);
}

.intro-section p,
.content-section p {
  color: var(--ink);
  font-size: 1.08rem;
}

.services-preview {
  padding: clamp(72px, 8vw, 112px) 0;
  background: linear-gradient(135deg, var(--soft-cream), var(--stone));
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.service-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  justify-items: center;
  padding: clamp(30px, 4vw, 42px) clamp(24px, 3vw, 34px);
  border: 1px solid rgba(215, 210, 200, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(31, 42, 46, 0.08);
  text-align: center;
}

.service-card h3 {
  min-height: 2.35em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1rem;
}

.service-card a {
  color: #8FBFD1;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.enquiry-band {
  background: linear-gradient(90deg, var(--sand) 0 45%, var(--white) 45% 100%);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: clamp(68px, 8vw, 112px) 0;
}

.enquiry-copy {
  max-width: 620px;
  text-align: center;
  justify-self: center;
}

.enquiry-copy h2 {
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.enquiry-copy p {
  margin-left: auto;
  margin-right: auto;
}

.small,
.note,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.compact-form,
.full-form {
  display: grid;
  gap: 18px;
}

.form-shell {
  max-width: 880px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.full-form {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(143, 191, 209, 0.28);
  border-color: #8FBFD1;
}

.status {
  display: none;
  color: var(--navy);
  font-weight: 800;
}

.page-hero {
  background:
    radial-gradient(circle at 20% 24%, rgba(174, 187, 177, 0.34), transparent 34%),
    linear-gradient(135deg, var(--soft-cream), var(--cream));
}

.text-panel {
  max-width: 840px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.values-section {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--soft-cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.values-grid article,
.detail-card,
.mini-cta .container {
  border: 1px solid rgba(215, 210, 200, 0.92);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(31, 42, 46, 0.08);
}

.values-grid article {
  padding: 28px;
  text-align: center;
}

.values-grid h3 {
  margin-bottom: 10px;
}

.detailed-services {
  max-width: 980px;
  display: grid;
  gap: 24px;
}

.detail-card {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 30px;
  align-items: start;
  padding: clamp(26px, 4vw, 38px);
}

.detail-card h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.detail-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.detail-card li {
  margin: 6px 0;
}

.detail-card aside {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 12px;
  background: var(--stone);
}

.detail-card aside span {
  display: block;
  color: #8FBFD1;
  font-size: 0.9rem;
  font-weight: 800;
}

.detail-card aside p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.mini-cta {
  padding: 0 0 clamp(70px, 8vw, 110px);
  background: var(--soft-cream);
}

.mini-cta .container {
  max-width: 900px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  text-align: center;
}

.mini-cta h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 5vw, 4rem);
}

.mini-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 128px 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 120px;
}

.footer-inner p {
  margin-bottom: 0;
}

.copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hero-background {
    inset: 0 0 0 22%;
  }

  .hero-copy {
    width: 52%;
    padding-left: 48px;
  }

  .hero-person {
    height: 78%;
    max-width: 42%;
  }
}

@media (max-width: 980px) {
  .site-header .container {
    width: min(100% - 32px, 1160px);
  }

  .nav-wrap {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 22px 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
  }

  .hero-layout {
    width: min(100% - 32px, 1160px);
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: clamp(40px, 7vw, 64px) 0 0;
    border-radius: 0 0 28px 28px;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    min-height: auto;
    padding: 0 0 clamp(32px, 5vw, 48px);
    background: none;
  }

  .hero-background {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: clamp(320px, 52vw, 500px);
    border-radius: 24px;
  }

  .hero-beach {
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.45) 12%,
      #000 28%,
      #000 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.45) 12%,
      #000 28%,
      #000 100%
    );
  }

  .hero-person {
    right: 3%;
    height: clamp(300px, 46vw, 430px);
    max-width: 48%;
    filter: drop-shadow(0 20px 30px rgba(31, 42, 46, 0.25));
  }

  .service-cards,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .brand img {
    width: 132px;
  }

  .centered-copy {
    padding: 76px 0;
  }

  .enquiry-grid,
  .full-form {
    grid-template-columns: 1fr;
  }

  .enquiry-band {
    background: linear-gradient(180deg, var(--sand) 0 42%, var(--white) 42% 100%);
  }

  .field.full {
    grid-column: auto;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .site-nav {
    gap: 12px 18px;
  }

  .site-nav a {
    font-size: 0.72rem;
  }

  .hero-layout {
    width: min(100% - 28px, 1160px);
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 10.4vw, 3.35rem);
  }

  .hero .lead {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-rule {
    margin-bottom: 26px;
  }

  .hero-person {
    right: 1%;
    height: clamp(260px, 72vw, 350px);
    max-width: 62%;
  }

  .hero-background {
    height: clamp(330px, 80vw, 430px);
  }

  .service-cards,
  .values-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    min-height: auto;
  }

  .button-row {
    gap: 12px;
  }

  .button-row .btn,
  .mini-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .js .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
