:root {
  --shore-bg: #F7F1E5;
  --shore-surface: #fffdf7;
  --shore-surface-soft: #D9E8EF;
  --shore-surface-muted: #e8e2d6;
  --shore-line: #d9d7cf;
  --shore-text: #153A5B;
  --shore-text-soft: #516575;
  --shore-primary: #006782;
  --shore-primary-soft: #76c7e8;
  --shore-accent: #F2C14E;
  --shore-accent-deep: #F2C14E;
  --shore-ink: #112532;
  --shore-shadow: 0 30px 60px rgba(17, 37, 50, 0.12);
  --shore-radius: 26px;
  --shore-shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body.shore-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(118, 199, 232, 0.25), transparent 28%),
    radial-gradient(circle at top right, rgba(253, 203, 87, 0.22), transparent 26%),
    linear-gradient(180deg, #F7F1E5 0%, #fef7ea 48%, #F7F1E5 100%);
  color: var(--shore-text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.7;
}

a {
  color: var(--shore-primary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
  color: #004d63;
}

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

.shore-shell {
  width: min(calc(100% - 2rem), var(--shore-shell));
  margin: 0 auto;
}

.shore-shell--narrow {
  width: min(calc(100% - 2rem), 840px);
}

.shore-main {
  position: relative;
}

.shore-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.shore-header__utility {
  background: linear-gradient(90deg, rgba(0, 103, 130, 0.94), rgba(17, 37, 50, 0.94));
  color: #f9fbff;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shore-header__utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.shore-header__social {
  display: flex;
  gap: 1rem;
}

.shore-header__social a {
  color: #f9fbff;
}

.shore-nav-wrap {
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 215, 207, 0.8);
}

.shore-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1rem 0;
}

.shore-brand {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.shore-brand__mark,
.shore-display,
.shore-page-title,
.shore-section-title,
.shore-heading,
.shore-footer__title,
.shore-article-card h2 {
  font-family: "Bricolage Grotesque", "Trebuchet MS", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

.shore-brand__mark {
  color: var(--shore-primary);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 0.92;
}

.shore-brand__sub {
  color: var(--shore-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.shore-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
}

.shore-nav__link {
  color: var(--shore-text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 0.35rem 0;
  position: relative;
  text-transform: uppercase;
}

.shore-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--shore-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.shore-nav__link:hover::after,
.shore-nav__link:focus::after {
  transform: scaleX(1);
}

.shore-nav__dropdown {
  position: relative;
}

.shore-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  display: none;
  min-width: 210px;
  padding: 0.75rem;
  background: var(--shore-surface);
  border: 1px solid rgba(217, 215, 207, 0.9);
  border-radius: 18px;
  box-shadow: var(--shore-shadow);
  transform: translateX(-50%);
}

.shore-nav__dropdown:hover .shore-nav__dropdown-menu,
.shore-nav__dropdown:focus-within .shore-nav__dropdown-menu {
  display: grid;
  gap: 0.45rem;
}

.shore-nav__dropdown-menu a {
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
}

.shore-nav__dropdown-menu a:hover,
.shore-nav__dropdown-menu a:focus {
  background: rgba(118, 199, 232, 0.14);
}

.shore-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 103, 130, 0.16);
  background: var(--shore-primary);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  text-transform: uppercase;
}

.shore-book-btn:hover,
.shore-book-btn:focus {
  color: #fff;
  transform: translateY(-1px);
}

.shore-book-btn--gold {
  background: linear-gradient(135deg, var(--shore-accent), #f0b93f);
  border-color: rgba(216, 165, 36, 0.35);
  color: #24303a;
}

.shore-book-btn--gold:hover,
.shore-book-btn--gold:focus {
  color: #24303a;
}

.shore-book-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.48);
}

.shore-kicker {
  color: var(--shore-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.shore-display {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.3rem);
  font-weight: 800;
  line-height: 0.92;
  margin: 0;
}

.shore-page-title {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.96;
  margin: 0;
}

.shore-page-title--article {
  color: var(--shore-ink);
  margin-bottom: 1rem;
}

.shore-hero {
  position: relative;
  padding: 2.2rem 0 0;
}

.shore-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) minmax(0, 1fr);
  gap: 1rem;
  min-height: 720px;
}

.shore-hero__panel,
.shore-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shore-hero__panel {
  border-radius: var(--shore-radius);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.shore-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 37, 50, 0.18), rgba(17, 37, 50, 0.5));
}

.shore-hero__center {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: var(--shore-radius);
  background: linear-gradient(180deg, rgba(118, 199, 232, 0.96), rgba(0, 103, 130, 0.88));
  box-shadow: var(--shore-shadow);
  position: relative;
  overflow: hidden;
}

.shore-hero__center::before {
  content: "";
  position: absolute;
  inset: auto auto -2rem -1rem;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(253, 203, 87, 0.3);
  filter: blur(12px);
}

.shore-hero__info,
.shore-card,
.shore-side-card,
.shore-article-card,
.shore-toc {
  background: var(--shore-surface);
  border: 1px solid rgba(217, 215, 207, 0.82);
  border-radius: var(--shore-radius);
  box-shadow: var(--shore-shadow);
}

.shore-hero__info {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  color: var(--shore-text);
  font-weight: 600;
}

.shore-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.shore-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.shore-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 74px;
  padding: 0.7rem;
  border-radius: 22px;
  background: rgba(255, 249, 237, 0.92);
}

.shore-pill img {
  max-height: 36px;
}

.shore-banner {
  margin: 1.1rem auto 0;
  width: min(calc(100% - 2rem), var(--shore-shell));
  border-radius: calc(var(--shore-radius) + 6px);
  position: relative;
  overflow: hidden;
}

.shore-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 37, 50, 0.62), rgba(0, 103, 130, 0.34));
}

.shore-banner__inner {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4.5rem;
}

.shore-banner--compact .shore-banner__inner {
  padding-bottom: 3.5rem;
}

.shore-section {
  padding: 4.5rem 0;
}

.shore-section--lift {
  margin-top: -3.75rem;
  position: relative;
  z-index: 3;
}

.shore-section-title,
.shore-heading {
  color: var(--shore-ink);
  margin: 0 0 1rem;
}

.shore-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 0.98;
}

.shore-heading--1,
.shore-heading--2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
}

.shore-heading--3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.shore-copy {
  color: var(--shore-text-soft);
  margin: 0 0 1rem;
}

.shore-copy--lead {
  font-size: 1.08rem;
}

.shore-copy--compact {
  font-size: 0.94rem;
}

.shore-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  align-items: start;
}

.shore-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.shore-layout--with-toc {
  grid-template-columns: 260px minmax(0, 1fr);
}

.shore-toc-side--right {
  order: 2;
}

.shore-card {
  padding: 1.5rem;
}

.shore-card--hero-copy {
  padding: 1.7rem;
}

.shore-card--content {
  padding: 1.6rem;
}

.shore-card--wide {
  padding: 1.8rem;
}

.shore-card--prose {
  padding: 1.8rem 2rem;
}

.shore-card--article {
  padding: 1.8rem;
}

.shore-card__intro {
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.shore-side-stack {
  display: grid;
  gap: 1rem;
}

.shore-side-card {
  padding: 1.15rem;
}

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

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

.shore-side-card__eyebrow,
.shore-footer__eyebrow {
  color: var(--shore-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.shore-side-card__links,
.shore-footer__links,
.shore-footer__meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shore-side-card__links li + li,
.shore-footer__links li + li,
.shore-footer__meta li + li {
  margin-top: 0.55rem;
}

.shore-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.3rem 0;
}

.shore-gallery--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shore-gallery--hero {
  margin-top: 1rem;
}

.shore-gallery__item,
.shore-figure {
  height: 100%;
}

.shore-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--shore-surface-soft);
}

.shore-figure img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.shore-figure figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--shore-text-soft);
  font-size: 0.88rem;
}

.shore-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--shore-text-soft);
}

.shore-list li + li {
  margin-top: 0.45rem;
}

.shore-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.3rem;
}

.shore-table {
  background: transparent;
  margin: 0;
}

.shore-table thead,
.shore-table tbody,
.shore-table tr,
.shore-table th,
.shore-table td {
  background: transparent;
}

.shore-table th {
  color: var(--shore-ink);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shore-table td,
.shore-table th {
  border-bottom: 1px solid rgba(217, 215, 207, 0.75);
  padding: 0.7rem 0.9rem;
}

.shore-quote {
  border-left: 4px solid var(--shore-accent);
  color: var(--shore-text);
  margin: 1rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
}

.shore-code {
  background: #112532;
  border-radius: 20px;
  color: #e7f2f7;
  overflow-x: auto;
  padding: 1rem;
}

.shore-separator {
  border: 0;
  border-top: 1px solid rgba(217, 215, 207, 0.82);
  margin: 1.4rem 0;
}

.shore-embed iframe,
.shore-embed video,
.shore-embed object,
.shore-embed embed {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 22px;
}

.shore-rich-text {
  color: var(--shore-text-soft);
}

.shore-breadcrumbs {
  margin-bottom: 1rem;
}

.shore-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shore-breadcrumbs li {
  color: var(--shore-text-soft);
  font-size: 0.85rem;
}

.shore-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
}

.shore-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--shore-text-soft);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.shore-main-image {
  float: right;
  margin: 0 0 1rem 1rem;
  max-width: min(36%, 360px);
}

.shore-main-image img {
  border-radius: 24px;
}

.shore-toc {
  padding: 1rem 1.15rem;
}

.shore-toc__title {
  color: var(--shore-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.shore-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shore-toc li + li {
  margin-top: 0.45rem;
}

.shore-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.shore-card-grid--horizontal .shore-article-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}

.shore-card-grid--minimal .shore-article-card img {
  display: none;
}

.shore-article-card {
  overflow: hidden;
}

.shore-article-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.shore-article-card__body {
  padding: 1.1rem;
}

.shore-article-card h2 {
  color: var(--shore-ink);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.shore-read-more {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.shore-footer {
  margin-top: 3rem;
  padding: 3.2rem 0;
  background: linear-gradient(180deg, rgba(17, 37, 50, 0.98), rgba(0, 103, 130, 0.94));
  color: #f5f7fb;
}

.shore-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.shore-footer__title {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 1rem;
}

.shore-footer__copy,
.shore-footer a,
.shore-footer li {
  color: rgba(245, 247, 251, 0.82);
}

@media (max-width: 1120px) {
  .shore-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .shore-hero__panel {
    min-height: 280px;
  }

  .shore-layout,
  .shore-layout--with-toc,
  .shore-footer__grid,
  .shore-card-grid {
    grid-template-columns: 1fr;
  }

  .shore-main-image {
    float: none;
    margin: 0 0 1rem;
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .shore-header__utility-inner,
  .shore-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .shore-nav__menu {
    justify-content: flex-start;
  }

  .shore-gallery,
  .shore-gallery--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .shore-shell {
    width: min(calc(100% - 1.2rem), var(--shore-shell));
  }

  .shore-section {
    padding: 3rem 0;
  }

  .shore-banner {
    width: min(calc(100% - 1.2rem), var(--shore-shell));
  }

  .shore-card,
  .shore-side-card {
    padding: 1.1rem;
  }

  .shore-gallery,
  .shore-gallery--dense {
    grid-template-columns: 1fr;
  }

  .shore-book-btn {
    width: 100%;
  }

  .shore-hero__actions {
    flex-direction: column;
  }
}

@media print {
  .shore-header,
  .shore-footer,
  .shore-book-btn,
  .shore-toc {
    display: none !important;
  }

  body.shore-body {
    background: #fff;
    color: #000;
  }

  .shore-card,
  .shore-side-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
