:root {
  --color-ink: #172033;
  --color-muted: #657083;
  --color-navy: #212d4b;
  --color-navy-soft: #2f3c61;
  --color-tan: #bf996f;
  --color-tan-light: #eee1d1;
  --color-sand: #f5f0e8;
  --color-shell: #fbf8f3;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(33, 45, 75, 0.16);
  --radius: 8px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 248, 243, 0.94);
  border-bottom: 1px solid rgba(33, 45, 75, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 250px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  color: var(--color-muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 14px;
}

nav a,
.header-cta {
  text-decoration: none;
}

.header-cta,
.button,
.contact-form button,
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.header-cta,
.button.primary,
.contact-form button {
  background: var(--color-tan);
  color: var(--color-navy);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--color-white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: 32px;
  padding: clamp(72px, 12vw, 130px) clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  color: var(--color-white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(33, 45, 75, 0.96), rgba(33, 45, 75, 0.76), rgba(33, 45, 75, 0.28)),
    linear-gradient(0deg, rgba(33, 45, 75, 0.2), rgba(33, 45, 75, 0.2)),
    url("/images/langebaan-lagoon-natural.jpg");
  background-size: cover;
  background-position: center 44%;
}

.hero::after,
.subpage-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(33, 45, 75, 0.42), rgba(33, 45, 75, 0));
  pointer-events: none;
}

.hero-content {
  min-width: 0;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--color-tan);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  font-weight: 600;
}

h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 90px);
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  font-size: 25px;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-self: end;
  padding: 24px;
  background: rgba(251, 248, 242, 0.94);
  color: var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-panel strong {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.1;
}

.hero-panel span {
  color: var(--color-muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(33, 45, 75, 0.1);
  background: var(--color-white);
}

.trust-strip span {
  padding: 22px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid rgba(33, 45, 75, 0.1);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-intro {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-intro.narrow {
  max-width: 720px;
}

.section-intro p:not(.eyebrow),
.about-copy p,
.contact-section p,
.subpage-hero p {
  color: var(--color-muted);
  font-size: 18px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
}

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

.service-card,
.steps-card,
.faq-list article,
.content-columns article {
  padding: 26px;
  background: var(--color-white);
  border: 1px solid rgba(33, 45, 75, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(33, 45, 75, 0.06);
}

.service-card.featured {
  background: var(--color-navy);
  color: var(--color-white);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card p {
  color: var(--color-muted);
}

.service-card a {
  margin-top: 10px;
  padding-inline: 0;
  color: var(--color-navy);
  justify-content: flex-start;
}

.service-card.featured a {
  color: var(--color-tan);
}

.steps-card ol {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.about-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  background: var(--color-navy);
  color: var(--color-white);
}

.about-image {
  display: grid;
  min-height: 520px;
  padding: clamp(32px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 0.9), rgba(251, 248, 243, 0.62)),
    url("/images/lamberts-bay-harbour-natural.jpg");
  background-position: center;
  background-size: cover;
}

.about-image img {
  align-self: end;
  width: min(420px, 88%);
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border: 10px solid rgba(251, 248, 243, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 90px);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.faq-list span {
  color: var(--color-tan);
  font-weight: 800;
  font-size: 12px;
}

.faq-list h3 {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.35;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: 48px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--color-navy);
  color: var(--color-white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--color-shell);
  color: var(--color-ink);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 35, 39, 0.2);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--color-ink);
  font: inherit;
}

.subpage-hero {
  position: relative;
  padding: clamp(86px, 12vw, 150px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(33, 45, 75, 0.96), rgba(33, 45, 75, 0.72)),
    url("/images/langebaan-lagoon-natural.jpg");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.subpage-hero > * {
  position: relative;
  z-index: 1;
}

.subpage-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

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

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .lead-grid,
  .about-band,
  .contact-section,
  .content-columns {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 720px;
    padding-top: 62px;
  }

  .hero-content,
  .hero-panel {
    width: 100%;
    max-width: calc(100vw - 64px);
    min-width: 0;
  }

  .about-image {
    min-height: 360px;
    padding: 28px 16px;
  }

  .about-image img {
    width: min(300px, 90%);
  }

  h1 {
    max-width: 10.5ch;
    font-size: 31px;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 15px;
  }

  .trust-strip,
  .service-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    text-align: left;
  }
}
