:root {
  --ink: #10201d;
  --muted: #5e716c;
  --line: #dbe7e2;
  --paper: #f7fbf8;
  --white: #ffffff;
  --blue: #0f5e74;
  --blue-dark: #0a3f51;
  --green: #2d7556;
  --gold: #f3b956;
  --rope: #c99752;
  --rope-dark: #8a5f2e;
  --rope-light: #f5dfad;
  --rope-shadow: #684720;
  --rope-pattern: repeating-linear-gradient(135deg, var(--rope-shadow) 0 5px, var(--rope-dark) 5px 8px, var(--rope) 8px 13px, var(--rope-light) 13px 17px, var(--rope) 17px 22px, var(--rope-shadow) 22px 26px);
  --rope-pattern-horizontal: repeating-linear-gradient(90deg, var(--rope-shadow) 0 6px, var(--rope-dark) 6px 10px, var(--rope) 10px 16px, var(--rope-light) 16px 21px, var(--rope) 21px 27px, var(--rope-shadow) 27px 32px);
  --card-radius: 18px;
  --panel-radius: 22px;
  --sea-foam: #dff3ef;
  --shadow: 0 18px 42px rgba(8, 33, 39, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 245, 255, 0.24), rgba(247, 251, 248, 0.66) 52%, rgba(247, 251, 248, 0.9)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 82% 6%, rgba(243, 185, 86, 0.08), transparent 22%),
    url("sky-background-deeper.png") center top / cover no-repeat fixed,
    linear-gradient(180deg, #ccecff 0%, #f7fbf8 100%);
  background-attachment: fixed;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 63, 81, 0.018)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.1), transparent 52%);
  backdrop-filter: saturate(1.08);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(230, 246, 242, 0.94)),
    var(--paper);
  border-bottom: 5px solid transparent;
  border-image: var(--rope-pattern-horizontal) 5;
  backdrop-filter: blur(14px);
}

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

.brand img {
  display: block;
  width: auto;
  height: clamp(62px, 7vw, 92px);
  max-width: min(230px, 42vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 12px;
  color: var(--blue-dark);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #092f3b;
  background: linear-gradient(180deg, #f8df9a, var(--gold));
  box-shadow: inset 0 0 0 2px rgba(138, 95, 46, 0.28);
}

.nav-toggle {
  display: none;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 27, 34, 0.86), rgba(5, 27, 34, 0.48) 48%, rgba(5, 27, 34, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 3px, transparent 3px 22px);
}

.hero__content {
  position: relative;
  max-width: 720px;
  padding: 96px clamp(20px, 6vw, 78px);
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.2rem;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 12px 20px;
  border: 3px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  box-shadow: 0 9px 0 rgba(8, 33, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.button::before {
  color: inherit;
  content: "⚓";
  font-size: 0.95em;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 0 rgba(8, 33, 39, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button--primary {
  color: #10201d;
  background:
    linear-gradient(180deg, #ffe2a2, var(--gold) 64%, #d89b38) padding-box,
    var(--rope-pattern) border-box;
}

.button--light {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(15, 94, 116, 0.55)) padding-box,
    var(--rope-pattern) border-box;
  text-shadow: none;
}

.button--danger {
  color: var(--white);
  background:
    linear-gradient(180deg, #c7463f, #9f342f) padding-box,
    var(--rope-pattern) border-box;
}

.quick-links,
.resource-grid,
.knot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  width: min(1160px, calc(100% - 36px));
  margin: 42px auto;
}

.feature-card,
.resource-card,
.knot-card,
.callout,
.notice,
.post-form,
.forum-feed {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 250, 0.96)) padding-box,
    var(--rope-pattern) border-box;
  border: 7px solid transparent;
  border-image: none;
  border-radius: var(--card-radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
}

.feature-card::after,
.resource-card::after,
.knot-card::after,
.notice::after,
.data-panel::after,
.contact-form::after,
.radar-card::after {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: rgba(10, 63, 81, 0.12);
  content: "⚓";
  font-size: 2.3rem;
  line-height: 1;
  pointer-events: none;
}

.feature-card,
.resource-card {
  display: block;
  min-height: 150px;
  padding: 24px;
  text-decoration: none;
}

.feature-card span,
.resource-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-weight: 800;
}

.feature-card span::before,
.resource-card span::before {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  place-items: center;
  color: var(--blue-dark);
  background: linear-gradient(180deg, #ffe2a2, var(--gold));
  border: 2px solid rgba(138, 95, 46, 0.35);
  border-radius: 50%;
  content: "⚓";
  font-size: 0.82rem;
  vertical-align: middle;
  box-shadow: 0 2px 0 rgba(8, 33, 39, 0.18);
}

.feature-card strong,
.resource-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.feature-card:hover,
.resource-card:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 250, 0.98)) padding-box,
    repeating-linear-gradient(135deg, #684720 0 5px, #a57238 5px 9px, #f0c36c 9px 14px, #fff1c3 14px 18px, #c99752 18px 23px, #684720 23px 27px) border-box;
  transform: translateY(-2px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  width: min(1160px, calc(100% - 36px));
  margin: 72px auto;
  align-items: start;
}

.split-section > div:first-child p:not(.eyebrow),
.page-heading p,
.notice p,
.knot-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.callout,
.notice {
  padding: 24px;
}

.callout ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.page-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.page-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.page-heading h1 {
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.page-heading h1::after {
  display: block;
  width: min(320px, 55vw);
  height: 10px;
  margin-top: 18px;
  content: "";
  background: var(--rope-pattern-horizontal);
  border-radius: 999px;
  box-shadow: 0 3px 0 rgba(8, 33, 39, 0.14);
}

.map-panel {
  overflow: hidden;
  height: min(66vh, 560px);
  min-height: 360px;
  margin-bottom: 32px;
  background: var(--rope-pattern) border-box;
  border: 7px solid transparent;
  border-image: none;
  border-radius: var(--panel-radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
}

.map-panel--interactive {
  position: relative;
}

.first-coast-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: #d8f0ed;
  border-radius: calc(var(--panel-radius) - 8px);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  position: absolute;
  inset: 24px;
  display: grid;
  margin: 0;
  place-items: center;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--panel-radius) - 8px);
  font-weight: 800;
  text-align: center;
}

.map-key {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: -14px 0 34px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.map-key span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 94, 116, 0.12);
  border-radius: 999px;
}

.map-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(8, 33, 39, 0.24);
}

.map-dot--ramp {
  background: var(--blue);
}

.map-dot--park {
  background: var(--green);
}

.map-marker {
  display: grid !important;
  width: 34px !important;
  height: 34px !important;
  place-items: center;
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(8, 33, 39, 0.28);
  font-size: 0.92rem;
  font-weight: 900;
}

.map-marker--ramp {
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
}

.map-marker--park {
  background: linear-gradient(180deg, var(--green), #174d39);
}

.map-marker span {
  line-height: 1;
}

.leaflet-container {
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.leaflet-control-layers {
  color: var(--blue-dark);
  border: 3px solid transparent !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 250, 0.96)) padding-box,
    var(--rope-pattern) border-box !important;
  box-shadow: var(--shadow) !important;
  font-weight: 800;
}

.leaflet-popup-content-wrapper {
  border-radius: 14px !important;
}

.leaflet-popup-content strong,
.leaflet-popup-content span,
.leaflet-popup-content a {
  display: block;
}

.leaflet-popup-content strong {
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 1rem;
}

.leaflet-popup-content span {
  color: var(--green);
  font-weight: 800;
}

.leaflet-popup-content p {
  margin: 8px 0;
  color: var(--muted);
}

.leaflet-popup-content a {
  color: var(--blue);
  font-weight: 800;
}

.radar-card {
  position: relative;
  margin: 0 0 34px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 248, 0.96)) padding-box,
    var(--rope-pattern) border-box;
  border: 7px solid transparent;
  border-image: none;
  border-radius: var(--panel-radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
}

.radar-frame {
  overflow: hidden;
  width: calc(66% + 33px) !important;
  max-width: 100%;
  aspect-ratio: 16 / 9 !important;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--card-radius) - 4px);
}

.radar-frame iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.notice {
  margin-top: 34px;
}

.knot-list {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  width: 100%;
  margin: 0;
}

.knot-card {
  padding: 24px;
}

.knot-card h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1rem;
}

.knot-graphic {
  margin: 20px 0 18px;
  padding: 10px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(180deg, #eefaf7, #dff3ef) padding-box,
    var(--rope-pattern) border-box;
  border: 5px solid transparent;
  border-image: none;
  border-radius: var(--card-radius);
}

.knot-graphic svg {
  display: block;
  width: 100%;
  height: auto;
}

.knot-graphic text {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.line-main,
.line-second,
.line-accent,
.hook,
.hook-eye,
.wrap-mark {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-main {
  stroke: var(--blue-dark);
  stroke-width: 8;
}

.line-second {
  stroke: var(--green);
  stroke-width: 7;
}

.line-accent,
.wrap-mark {
  stroke: var(--gold);
  stroke-width: 5;
}

.hook,
.hook-eye {
  stroke: #778783;
  stroke-width: 6;
}

.knot-card ol {
  padding-left: 22px;
}

.knot-card li + li {
  margin-top: 8px;
}

.forum-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: start;
}

.post-form,
.forum-feed,
.tide-controls,
.rating-panel,
.data-panel,
.contact-form {
  padding: 24px;
}

.post-form label,
.tide-controls label,
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.tide-dashboard,
.tide-moon-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.tide-controls,
.rating-panel,
.data-panel,
.contact-form {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 250, 0.96)) padding-box,
    var(--rope-pattern) border-box;
  border: 7px solid transparent;
  border-image: none;
  border-radius: var(--panel-radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
}

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

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.gallery-feed {
  min-width: 0;
}

.gallery-feed h2 {
  color: var(--blue-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.gallery-card,
.empty-state {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 250, 0.96)) padding-box,
    var(--rope-pattern) border-box;
  border: 7px solid transparent;
  border-image: none;
  border-radius: var(--card-radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e4f0ec;
}

.gallery-card div,
.empty-state {
  padding: 18px;
}

.gallery-card h3 {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.gallery-card p,
.gallery-card span,
.empty-state p {
  color: var(--muted);
}

.gallery-card span {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

.notice--compact {
  margin: 0 0 24px;
}

.admin-login {
  max-width: 460px;
}

.admin-section {
  margin-top: 34px;
}

.admin-count {
  color: var(--muted);
  font-weight: 800;
}

.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 250, 0.96)) padding-box,
    var(--rope-pattern) border-box;
  border: 7px solid transparent;
  border-image: none;
  border-radius: var(--card-radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), var(--shadow);
}

.admin-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  background: #e4f0ec;
}

.admin-card__body {
  padding: 20px;
}

.admin-card__body h3 {
  color: var(--blue-dark);
}

.admin-card__body p {
  color: var(--muted);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.data-panel p,
.form-note {
  color: var(--muted);
}

.contact-details {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-details a {
  color: var(--green);
  font-weight: 800;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.rating-panel {
  display: grid;
  align-content: center;
}

.rating-panel h2 {
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.rating-panel p:not(.eyebrow),
.status-text,
.plain-list {
  color: var(--muted);
}

.species-box {
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(180deg, #f8fffd, var(--sea-foam));
  border: 2px dashed rgba(138, 95, 46, 0.45);
  border-radius: calc(var(--card-radius) - 4px);
}

.species-box h3 {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

.species-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.rating-meter {
  overflow: hidden;
  height: 14px;
  margin-top: 20px;
  background: #e4f0ec;
  border-radius: 999px;
}

.rating-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.tide-moon-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.panel-heading a {
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--blue-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moon-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.moon-disc {
  width: 96px;
  height: 96px;
  background: radial-gradient(circle at 34% 34%, #fff7cf, #d8dde0 58%, #87969a);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset -14px 0 18px rgba(0, 0, 0, 0.22), var(--shadow);
}

.plain-list {
  margin: 0;
  padding-left: 20px;
}

.plain-list li + li {
  margin-top: 8px;
}

.post {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.post:first-child {
  border-top: 0;
}

.post h3 {
  margin-bottom: 4px;
}

.post__meta {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 10px, transparent 10px 22px),
    linear-gradient(180deg, var(--blue-dark), #062f3b);
  border-top: 6px solid transparent;
  border-image: var(--rope-pattern-horizontal) 6;
}

.site-footer p {
  margin: 0;
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .radar-card {
    width: 100%;
  }

  .radar-frame {
    width: 100% !important;
  }

  .hero {
    min-height: 560px;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(5, 27, 34, 0.82), rgba(5, 27, 34, 0.52));
  }

  .hero__content {
    padding-top: 78px;
  }

  .split-section,
  .forum-layout,
  .about-layout,
  .gallery-layout,
  .tide-dashboard,
  .tide-moon-grid {
    grid-template-columns: 1fr;
  }

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