@font-face {
  font-family: "League Spartan";
  src: url("/assets/league-spartan.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ink: #112f35;
  --ink-deep: #0a2227;
  --paper: #f6f7f5;
  --white: #ffffff;
  --aqua: #b8dde0;
  --aqua-deep: #77b8bf;
  --line: rgba(17, 47, 53, 0.18);
  --serif: "Baskerville", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "League Spartan", Arial, sans-serif;
  --page: min(1240px, calc(100vw - 72px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  line-height: 1.15;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  color: var(--white);
  transform: translateX(-50%);
}

.wordmark {
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  padding-block: 8px;
  border-bottom: 1px solid transparent;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  border-color: currentColor;
}

.nav-cta {
  padding: 12px 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 52% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 27, 32, 0.83) 0%, rgba(5, 27, 32, 0.5) 46%, rgba(5, 27, 32, 0.08) 76%),
    linear-gradient(0deg, rgba(5, 27, 32, 0.34), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}

.eyebrow {
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 14px 3px 0;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: #4e777c;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 30px;
  font-size: clamp(4.2rem, 7.2vw, 7.6rem);
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 38px;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font: 650 0.78rem/1 var(--sans);
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.text-link {
  text-underline-offset: 6px;
}

.light-link:hover,
.light-link:focus-visible {
  color: var(--aqua);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(36px, calc((100vw - 1240px) / 2));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  width: var(--page);
  margin: 0 auto;
}

.approach {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 5vw, 80px);
  padding-block: clamp(110px, 13vw, 180px);
}

.section-number {
  padding-top: 46px;
  border-top: 1px solid var(--line);
  color: #709398;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.section-heading h2,
.inspiration h2,
.process h2,
.enquiry h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.3vw, 6rem);
}

.section-copy {
  align-self: end;
  max-width: 500px;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.lead {
  margin-bottom: 22px;
  font-size: 1.2rem;
  line-height: 1.55;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}

.benefits article {
  min-height: 330px;
  padding: 52px clamp(26px, 3.2vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits span {
  display: block;
  margin-bottom: 84px;
  color: var(--aqua);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.benefits h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.benefits p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.inspiration {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  grid-template-rows: auto auto;
  gap: 46px clamp(46px, 8vw, 120px);
  padding-block: clamp(110px, 14vw, 190px);
}

.inspiration-intro {
  align-self: end;
  padding-bottom: 20px;
}

.inspiration-intro > p:last-child {
  max-width: 460px;
  margin-top: 36px;
  margin-bottom: 0;
}

.image {
  margin: 0;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-villa {
  grid-row: span 2;
}

.image-villa picture {
  display: block;
  height: min(760px, 65vw);
}

.image-water {
  width: 76%;
  justify-self: end;
}

.image-water picture {
  display: block;
  height: 320px;
}

figcaption {
  margin-top: 12px;
  color: #4e777c;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
  padding-block: clamp(105px, 12vw, 170px);
  color: var(--white);
}

.process::before {
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: min(760px, 100%);
  margin-top: calc(clamp(105px, 12vw, 170px) * -1);
  background: var(--ink-deep);
  content: "";
}

.process-heading .eyebrow {
  color: var(--aqua);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.steps li:first-child {
  padding-top: 6px;
  border-top: 0;
}

.steps span {
  color: var(--aqua);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.steps h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(115px, 14vw, 190px);
}

.enquiry-copy > p:not(.eyebrow):not(.direct-contact) {
  max-width: 480px;
  margin-top: 34px;
  font-size: 1.15rem;
}

.direct-contact {
  margin-top: 56px;
  color: #4e777c;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact a {
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
  text-underline-offset: 5px;
}

.enquiry-form {
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(17, 47, 53, 0.08);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  margin-bottom: 26px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field label span {
  color: #4e777c;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #8ca2a5;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 1rem/1.5 var(--sans);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
  outline: 2px solid transparent;
  box-shadow: 0 2px 0 var(--ink);
}

.form-note {
  margin: -4px 0 22px;
  color: #4e777c;
  font-size: 0.82rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 42px max(36px, calc((100vw - 1240px) / 2));
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.site-footer p:last-child {
  text-align: right;
}

.footer-wordmark {
  color: var(--white);
}

*:focus-visible {
  outline: 2px solid var(--aqua-deep);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 48px, 820px);
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    max-width: 700px;
  }

  .approach {
    grid-template-columns: 48px 1fr;
  }

  .section-copy {
    grid-column: 2;
  }

  .benefits {
    grid-template-columns: 1fr 1fr;
  }

  .benefits article:nth-child(2) {
    border-right: 0;
  }

  .benefits article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .process::before {
    height: 100%;
  }

  .process-heading {
    max-width: 660px;
  }

  .steps {
    max-width: 680px;
  }

  .enquiry-copy {
    max-width: 660px;
  }

  .direct-contact {
    margin-top: 32px;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100% - 36px);
  }

  .site-header {
    padding-top: 20px;
  }

  .nav-cta {
    padding: 10px 15px 8px;
  }

  .hero {
    min-height: 680px;
    height: 100svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 27, 32, 0.85) 0%, rgba(5, 27, 32, 0.53) 72%, rgba(5, 27, 32, 0.24));
  }

  .hero-content {
    justify-content: flex-end;
    padding: 130px 0 100px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .hero-copy {
    max-width: 520px;
    margin-bottom: 30px;
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .approach {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 92px;
  }

  .section-number {
    display: none;
  }

  .section-copy {
    grid-column: auto;
  }

  .section-heading h2,
  .inspiration h2,
  .process h2,
  .enquiry h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits article {
    min-height: auto;
    padding: 38px 24px 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefits article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .benefits span {
    margin-bottom: 40px;
  }

  .inspiration {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
    padding-block: 92px;
  }

  .inspiration-intro > p:last-child {
    margin-top: 26px;
  }

  .image-villa {
    grid-row: auto;
  }

  .image-villa picture {
    height: 118vw;
    max-height: 560px;
  }

  .image-water {
    width: 78%;
  }

  .image-water picture {
    height: 260px;
  }

  .process {
    gap: 56px;
    padding-block: 92px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .enquiry {
    gap: 48px;
    padding-block: 92px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enquiry-form {
    padding: 28px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 18px;
    text-align: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
