:root {
  --ocean: #075a5f;
  --deep: #0a2f35;
  --ink: #10282b;
  --muted: #5f716e;
  --shell: #f7f0e8;
  --sand: #eadccf;
  --surface: #fffaf3;
  --mist: #9dc9d4;
  --sage: #c8d6b4;
  --coral: #d66f4d;
  --line: rgba(10, 47, 53, 0.16);
  --shadow: 0 24px 60px rgba(10, 47, 53, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--deep);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-bar {
  background: var(--deep);
  color: #f9efe5;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
}

.site-header {
  position: absolute;
  top: 2.35rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  width: 180px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.76);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 250, 243, 0.38);
  border-radius: 999px;
  background: rgba(10, 47, 53, 0.34);
  color: white;
  backdrop-filter: blur(14px);
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 250, 243, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 47, 53, 0.82), rgba(10, 47, 53, 0.32) 52%, rgba(10, 47, 53, 0.18)),
    linear-gradient(0deg, rgba(10, 47, 53, 0.68), transparent 58%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.95) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12rem 0 5.5rem;
  color: #fffaf3;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 0.8rem;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mist);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 7vw, 6rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 250, 243, 0.9);
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ocean);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--deep);
}

.button.ghost {
  border: 1px solid rgba(255, 250, 243, 0.42);
  color: white;
  background: rgba(255, 250, 243, 0.1);
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -3rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip article {
  min-height: 154px;
  padding: 1.35rem;
  background: var(--surface);
}

.trust-strip span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ocean);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.trust-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0;
}

.intro {
  max-width: 980px;
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.text-link,
.tide-card a,
.steps a,
.logistics-grid a {
  color: var(--ocean);
  font-weight: 800;
  text-underline-offset: 0.25em;
}

.tide-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.tide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(10, 47, 53, 0.06);
}

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

.tide-card.large {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.tide-card.large img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.tide-card.large div,
.image-card div {
  padding: 1.45rem;
}

.tide-card.accent {
  background: var(--deep);
  color: #fffaf3;
}

.tide-card.accent p,
.tide-card.accent a {
  color: rgba(255, 250, 243, 0.88);
}

.image-card {
  padding: 0;
  overflow: hidden;
}

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

.training {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.training-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.training-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.training-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 1rem 1rem 1rem 1.2rem;
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 250, 243, 0.72);
}

.arrival {
  padding-top: 3rem;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

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

.steps article,
.logistics-grid article {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.steps span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--coral);
  font-weight: 900;
}

.steps p,
.logistics-grid p {
  color: var(--muted);
}

.logistics {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0 6rem;
}

.gallery img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
}

.owner-cta {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto 6rem;
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 90, 95, 0.94), rgba(10, 47, 53, 0.98)),
    var(--deep);
  color: #fffaf3;
}

.owner-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.owner-cta .section-kicker {
  color: var(--mist);
}

.owner-cta .button.primary {
  flex: 0 0 auto;
  background: #fffaf3;
  color: var(--deep);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 3rem max(1rem, calc((100vw - 1180px) / 2)) 2rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer img {
  width: 64px;
  margin-bottom: 1rem;
}

.site-footer p {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer nav a {
  font-weight: 800;
  color: var(--ocean);
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    top: 2.15rem;
  }

  .brand {
    width: 142px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 250, 243, 0.45);
    border-radius: 999px;
    background: rgba(10, 47, 53, 0.46);
    color: white;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 5.6rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(10, 47, 53, 0.96);
    padding: 0.8rem;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(10, 47, 53, 0.88), rgba(10, 47, 53, 0.28)),
      linear-gradient(90deg, rgba(10, 47, 53, 0.62), transparent);
  }

  .trust-strip,
  .tide-grid,
  .training,
  .steps,
  .logistics,
  .gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading,
  .owner-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .tide-card.large {
    grid-row: auto;
  }

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

  .gallery img {
    height: 320px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .concept-bar {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip article,
  .tide-card,
  .steps article,
  .logistics-grid article {
    padding: 1.2rem;
  }

  .owner-cta {
    margin-bottom: 4rem;
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
