﻿:root {
  --page-bg: #fff;
  --text: #101010;
  --muted: rgba(16, 16, 16, 0.52);
  --line: #daddde;
  --blue: #0ab0f3;
  --purple: #4b0a76;
  --shell: min(110rem, calc(100vw - 4rem));
  --radius: 1.75rem;
  --shadow: 0 1.375rem 3.75rem rgba(15, 16, 24, 0.08);
}


* {
  box-sizing: border-box;
}


html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  overflow-x: hidden;
}


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


a {
  color: inherit;
  text-decoration: none;
}


button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}


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


main,
footer {
  transition: transform 0.25s ease;
}


.hero {
  position: relative;
  height: 100svh;
  min-height: 42.5rem;
  max-height: 67.5rem;
  padding: 0;
  overflow: hidden;
}


.hero h1,
.works-copy h2,
.centerpiece h2,
.fishpool-copy h2,
.logbook-copy h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.03em;
}


.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.04;
}


.hero p,
.works-copy p,
.centerpiece p,
.fishpool-copy p,
.logbook-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}


.hero p {
  font-size: clamp(1.05rem, 2.2vw, 2.25rem);
  line-height: 1.33;
}


.hero-media {
  position: relative;
  height: 100%;
  overflow: hidden;
}


.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-video {
  display: block;
}

.hero-video-mobile {
  display: none;
}


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


.hero-meta {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: clamp(1.5rem, 4vh, 2.5625rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: var(--shell);
}


.hero-copy {
  flex: 1;
  max-width: 45rem;
}


.hero-right-actions {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 15vw, 22rem);
}


.hero-credit {
  position: absolute;
  top: 78.9%;
  left: 58.6%;
  transform: translateX(-100%);
  width: auto;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.6rem, 1vw, 0.875rem);
  line-height: 1.2;
  color: rgba(16, 16, 16, 0.52);
  margin-bottom: 0;
  padding-top: 0.5rem;
}


.hero-overlay .pill-button {
  margin: 0;
  z-index: 99;
  color: #000;
}



.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 0.0625rem solid rgba(16, 16, 16, 0.24);
  border-radius: 999rem;
  background: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease;
  transform: translateZ(0); /* Force hardware acceleration and fix clip bounds */
}

.pill-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-button:hover {
  color: #fff;
  border-color: var(--blue);
}

.pill-button:hover::before {
  transform: translateX(0);
}


.works.section-shell {
  width: 100%;
  max-width: 100%;
  padding: 16rem 0 9.3125rem;
  margin: 0;
  overflow: hidden;
}


.masonry-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-columns: calc((100% - 11 * 1.5rem) / 12);
  gap: 4.5rem;
  align-items: start;
  padding-bottom: 4rem;
}


.work-card,
.works-copy {
  position: relative;
}


.work-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.0625rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
}


.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover img {
  transform: scale(1.05);
}


.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.54) 100%);
  pointer-events: none;
  z-index: 1;
}


.work-card::after,
.work-card__content::before,
.work-card__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 220%;
  height: 220%;
  transform: translate(-50%, 0) rotate(0deg);
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card::after {
  border-radius: 43%;
  background: transparent;
  box-shadow: inset 0 0 20px 10px rgba(255, 255, 255, 0.3);
  transition-duration: 2s;
  z-index: 2;
}

.work-card__content::before {
  border-radius: 46%;
  background: transparent;
  box-shadow: inset 0 0 15px 8px rgba(255, 255, 255, 0.2);
  transition-duration: 1.8s;
  z-index: -1;
}

.work-card__content::after {
  border-radius: 41%;
  background: transparent;
  box-shadow: inset 0 0 25px 12px rgba(255, 255, 255, 0.4);
  transition-duration: 1.6s;
  z-index: -2;
}

.work-card:hover::after {
  transform: translate(-50%, -70%) rotate(0deg);
}

.work-card:hover .work-card__content::before {
  transform: translate(-50%, -79%) rotate(0deg);
}

.work-card:hover .work-card__content::after {
  transform: translate(-50%, -50%) rotate(0deg);
}


/* Heart Icon Styles */
.work-card-heart {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  appearance: none;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: auto;
}

.work-card:hover .work-card-heart, .logbook-card:hover .work-card-heart, .curation-card:hover .work-card-heart, .myspace-work-card:hover .work-card-heart, .gallery-card:hover .work-card-heart, .stream-card:hover .work-card-heart, .work-image-container:hover .work-card-heart {
  opacity: 1;
}

.work-card-heart svg {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 1.5;
  transition: fill 0.2s ease, stroke 0.2s ease, transform 0.1s ease;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  overflow: visible;
}

.work-card-heart:active svg {
  transform: scale(0.9);
}

.work-card-heart.active,
.work-card-heart[aria-pressed="true"] {
  opacity: 1;
}

.work-card-heart.active svg,
.work-card-heart[aria-pressed="true"] svg {
  fill: #ffffff;
  stroke: #ffffff;
}

.work-card__content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
  color: #fff;
  pointer-events: none;
}


.work-card__content h3,
.work-card__content p {
  margin: 0;
}


.work-card__content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}


.work-card__content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #FFFFFF;
}


.card-1 {
  grid-column: 2 / span 3;
  grid-row: 1;
  margin-top: 4rem; 
}


.card-2 {
  grid-column: 6 / span 4;
  grid-row: 1;
  margin-top: 8rem;
}


.card-3 {
  grid-column: 10 / span 3;
  grid-row: 1;
  margin-top: 4rem;

  margin-left: 1.5rem;
}


.card-4 {
  grid-column: 1 / span 3;
  grid-row: 2;
  margin-top: 2rem;
}


.works-copy {
  grid-column: 4 / span 6;
  grid-row: 2;
  align-self: center;
  text-align: center;
  padding: 0;
  margin-top: -4rem;
  z-index: 2;
}


.works-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.2;
  white-space: nowrap;
  color: #000000;
  background-color: #FFFFFF;
  display: inline-block;
  padding: 0 0.5rem;
}


.centerpiece h2,
.logbook-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.2;
}


.works-copy p {
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  line-height: 1.33;
  color: #000000;
  opacity: 0.5;
  white-space: nowrap;
  background-color: #FFFFFF;
  display: inline-block;
  padding: 0 0.5rem;
  margin-top: 0;
}


.centerpiece p,
.logbook-copy p {
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  line-height: 1.33;
}


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


.card-5 {
  grid-column: 5 / span 3;
  grid-row: 3;
  margin-top: -4rem;
}


.card-6 {
  grid-column: 2 / span 3;
  grid-row: 3;
  margin-top: 14rem;
}


.card-7 {
  grid-column: 8 / span 3;
  grid-row: 3;
  margin-top: 8rem;
}


.card-8 {
  grid-column: 11 / span 3;
  grid-row: 3;
  margin-top: 12rem;
}


.centerpiece {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 10rem 0 5rem;
  text-align: center;
}


.centerpiece img {
  width: 2.75rem;
  margin-bottom: 1.5rem;
}


.fishpool-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 10rem 0 12.5rem;
  position: sticky;
  top: 15vh; /* Adjust top so it stays in view */
  z-index: 15; /* Put the text above the blue band but below the purple band */
}

.fishpool-wrapper {
  position: relative;
  height: 250vh; /* Make the wrapper taller so there's room to scroll while sticky */
}


.fishpool-icon {
  width: 4.5rem;
  height: 4.5rem;
}


.fishpool-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}


.fishpool-copy h2 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.2;
}


.fishpool-copy p {
  font-size: clamp(1.25rem, 2vw, 2.25rem);
  line-height: 1.33;
  color: var(--muted);
  max-width: 55rem;
}


.view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}


.view-more-link:hover {
  opacity: 0.7;
}


.view-more-link img {
  width: 1.7rem;
}


.current-bands {
  position: relative;
  margin-top: -100vh; /* Pull the bands up so they scroll over the sticky content */
  /* z-index: 10; */
  pointer-events: none;
}


.band {
  position: relative;
}


.band::before {
  content: "";
  position: absolute;
  top: -4.9vw;
  left: 0;
  width: 100%;
  height: 5vw;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  pointer-events: none;
}


.band-blue {
  min-height: 45rem;
  background: var(--blue);
  position: relative;
  z-index: 10; /* Below text */
}


.band-blue::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C120,100 240,0 360,0 C480,0 600,100 720,100 C840,100 960,0 1080,0 C1200,0 1320,100 1440,100 L1440,100 L0,100 Z' fill='%230ab0f3'/%3E%3C/svg%3E");
}


.band-purple {
  position: relative;
  z-index: 20; /* Ensure purple covers everything */
  min-height: 25rem;
  background: var(--purple);
}


.band-purple::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C120,100 240,0 360,0 C480,0 600,100 720,100 C840,100 960,0 1080,0 C1200,0 1320,100 1440,100 L1440,100 L0,100 Z' fill='%234b0a76'/%3E%3C/svg%3E");
}


.logbook {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12.5rem 0;
  pointer-events: auto;
}


.logbook-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: #fff;
  gap: 1rem;
  margin-right: calc(-1 * (100vw - var(--shell)) / 2 + 1rem);
  padding-right: calc((100vw - var(--shell)) / 2 - 1rem);
}


.logbook-icon {
  width: 4rem;
  margin-bottom: -0.5rem;
  margin-right: -0.5rem;
}


.logbook-copy p {
  color: rgba(255, 255, 255, 0.5);
}


.logbook-link {
  color: #fff;
}


.logbook-link img {
  filter: invert(1);
}


/* Scroll Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(3rem);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}


.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.reveal-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}


.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}


.reveal-right {
  opacity: 0;
  transform: translateX(3rem);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}


.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}


.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}


.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}


.reveal-wave {
  opacity: 0;
  transform: translateY(6rem);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}


.reveal-wave.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Delay modifiers for staggered animations */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}


/* Logbook Page Styles */
.logbook-page {
  padding-top: 6.5rem;
  background-color: #FAFAFA;
}


.logbook-page-header {
  text-align: center;
  padding: 1.5rem 0 2rem;
}


.logbook-title-overlay {
  position: absolute;
  top: -0.1em;
  bottom: -0.1em;
  left: 0;
  width: 100%;
  color: #fff;
  background-color: var(--blue);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* covers 'g' and 'b' */
  clip-path: inset(0 35% 0 34%); 
}


.logbook-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 0 1rem;
}


.logbook-tabs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}


.logbook-tabs a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8A94A6;
  text-decoration: none;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 0.875rem;
}


.logbook-tabs a img {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.5;
}


.logbook-tabs a:hover,
.logbook-tabs a.active {
  color: #101828;
  border-bottom-color: #101828;
}


.logbook-tabs a:hover img,
.logbook-tabs a.active img {
  opacity: 1;
}


.logbook-content-section {
  margin-bottom: 5rem;
}


.logbook-masonry-container {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}


.logbook-masonry-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}


.logbook-divider {
  border: 0;
  border-top: 1px dashed #EDEEF0;
  margin: 1.5rem 0;
}


.logbook-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}


.logbook-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.author-avatar {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #0ab0f3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  flex-shrink: 0;
}


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


.author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.author-name {
  font-size: 1rem;
  color: #101828;
  font-weight: 500;
  line-height: 1.4;
}


.author-time {
  font-size: 0.875rem;
  color: #99A1AF;
  line-height: 1.4;
}


.save-btn {
  background: #F7F7F7;
  border: none;
  padding: 0.25rem 0.625rem 0.25rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #848C99;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.2s, background 0.2s;
  margin-bottom: 0.25rem;
}

.logbook-detail-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.logbook-like-btn {
  min-height: 2rem;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  color: #4A5565;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.logbook-like-btn:hover {
  background: #F7F7F7;
  border-color: #D0D5DD;
  color: #101828;
}

.logbook-like-btn:focus-visible,
.save-btn:focus-visible {
  outline: 2px solid #101828;
  outline-offset: 2px;
}

.logbook-like-btn.active,
.logbook-like-btn[aria-pressed="true"] {
  background: #101828;
  border-color: #101828;
  color: #fff;
}

.logbook-like-btn:disabled,
.save-btn:disabled {
  cursor: wait;
  opacity: 0.66;
}

.logbook-like-btn span {
  color: inherit;
  font-variant-numeric: tabular-nums;
}


.save-btn:hover {
  background: #EBEBEB;
}

.save-btn.active,
.save-btn[aria-pressed="true"] {
  background: #101828;
  color: #fff;
}


.save-btn img {
  width: 1.25rem;
  height: 1.25rem;
}


.logbook-card-full {
  background: transparent;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.logbook-card-full .logbook-image {
  width: 100%;
  aspect-ratio: 490 / 381;
  object-fit: cover;
  background: #F4F4F4;
}


.logbook-card-full .logbook-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.logbook-card-text {
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.logbook-card-text .logbook-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}


/* Logbook Detail Page */
.logbook-detail-page {
  padding-top: 8.5rem;
  padding-bottom: 6rem;
  background-color: #fff;
}


.logbook-detail-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}


.logbook-detail-date {
  font-size: 1rem;
  color: #4A5565;
  text-align: center;
}


.logbook-detail-hero {
  width: 100%;
  height: 560px;
  object-fit: cover;
  background-color: #F4F4F4;
}


.logbook-detail-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}


.logbook-detail-title {
  font-size: 3.75rem;
  font-weight: 500;
  color: #000;
  text-align: left;
  margin: 0;
  line-height: 1.2;
}


.logbook-detail-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}


.logbook-detail-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: #F7F7F7;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #101828;
}


.logbook-detail-body,
.logbook-detail-text {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.65;
  margin: 0;
  width: 100%;
}

.logbook-detail-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logbook-detail-body.is-empty,
.logbook-detail-body.is-empty p {
  color: var(--muted);
}

.logbook-detail-body > * {
  margin-top: 0;
  margin-bottom: 0;
}

.logbook-detail-body p,
.logbook-detail-body li {
  color: #111827;
  line-height: 1.65;
}

.logbook-detail-body h2,
.logbook-detail-body h3 {
  color: #000;
  font-weight: 500;
  line-height: 1.2;
}

.logbook-detail-body h2 {
  font-size: 2.25rem;
}

.logbook-detail-body h3 {
  font-size: 1.5rem;
}

.logbook-detail-body ul,
.logbook-detail-body ol {
  padding-left: 1.5rem;
}

.logbook-detail-body blockquote {
  border-left: 2px solid #101828;
  padding-left: 1.25rem;
  color: #4A5565;
}

.logbook-detail-body figure {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}

.logbook-detail-body img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background-color: #F4F4F4;
}

.logbook-detail-body figcaption {
  color: #667085;
  font-size: 0.875rem;
  line-height: 1.5;
}

.logbook-detail-body a {
  color: #101828;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}


.logbook-detail-subtitle {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
  margin: 0;
  text-align: justify;
  width: 100%;
}


.logbook-detail-subtext {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.5;
  text-align: justify;
  margin: 0;
  width: 100%;
}


.logbook-detail-features {
  display: flex;
  gap: 0.25rem;
  width: 100%;
  margin: 0;
}


.logbook-detail-features .feature-card {
  flex: 1;
  background: #F7F7F7;
  padding: 2rem;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 320px;
}


.logbook-detail-features .feature-icon {
  width: 7.125rem;
  height: 7.125rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}


.logbook-detail-features .feature-icon img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}


.logbook-detail-features h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.875rem 0;
  line-height: 1.2;
}


.logbook-detail-features p {
  font-size: 1.125rem;
  color: #000;
  opacity: 0.5;
  margin: 0;
  line-height: 1.5;
}


.logbook-detail-large-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: #F4F4F4;
  margin: 0;
}


.showcase-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: -0.5rem; /* since container gap is 2rem, we want 1.5rem gap, so -0.5rem */
}


.showcase-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}


.showcase-title {
  font-size: 2rem;
  font-weight: 400;
  color: #272E39;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.2;
}


.showcase-artist {
  font-size: 1rem;
  font-weight: 400;
  color: #272E39;
  opacity: 0.5;
  letter-spacing: -0.04em;
  line-height: 1.2;
}


.showcase-desc {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
  color: #000;
  margin: 0;
  line-height: 1.5;
}


/* About Page Styles */
.about-page {
  padding-top: 9rem;
  background-color: #fff;
}

.about-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 2rem;
  margin-bottom: 1rem;

}


.about-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #101010;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.1em 0; 
  margin: 0;
}


.about-title-text {
  position: relative;
  z-index: 1;
}


.about-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: var(--blue);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* covers 'o' and 'u' roughly */
  clip-path: inset(0 25% 0 35%); 
}


.about-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0 0 2rem 0;
  line-height: 1.2;
}


.about-story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 8rem;
}


.about-story-content {
  max-width: 711px;
  text-align: justify;
  margin-bottom: 2.5rem;
}


.about-story-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000;
  opacity: 0.5;
  margin: 0;
}


.about-join-btn {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}


.about-join-btn:hover {
  background: #000;
  color: #fff;
}


.about-how-it-works-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding-bottom: 8rem;
}


.about-features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}


.about-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
  border-left: 1px solid rgba(0,0,0,0.1);
}


.about-feature:first-child {
  border-left: none;
}


.about-feature-icon {
  width: 6.25rem;
  height: 6.25rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}


.about-feature-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: #000;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}


.about-feature-desc {
  font-size: 1.125rem;
  color: #000;
  opacity: 0.5;
  margin: 0;
  line-height: 1.5;
}


.about-connect-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0 12rem;
  text-align: center;
}


.about-connect-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #000;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}


.about-connect-desc {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #000;
  opacity: 0.5;
  margin: 0;
  line-height: 1.33;
}


@media (max-width: 68.75rem) {

  :root {
    --shell: min(calc(100vw - 2rem), 57.5rem);
    --drawer-width: min(32rem, 72vw);
  }


  body.is-nav-open {
    --drawer-shift: var(--drawer-width);
    overflow: hidden;
  }


  main,
  footer {
    transform: translateX(calc(-1 * var(--drawer-shift, 0rem)));
  }


  .hero {
    min-height: 38.75rem;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }


  .hero-meta {
    bottom: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-right-actions {
    padding-right: 0;
  }


  .hero-copy {
    max-width: 28.75rem;
  }


  .hero-credit {
    width: auto;
    max-width: 20rem;
    top:71.5%;
    left: 41%;
  }


  .masonry-grid {
    grid-template-columns: repeat(6, 1fr);
  }


  .works-copy {
    grid-column: 2 / span 4;
    grid-row: auto;
    padding: 3rem 1rem;
  }


  .card-1,
  .card-2,
  .card-3,
  .card-4,
  .card-5,
  .card-6,
  .card-7,
  .card-8 {
    grid-column: span 3;
    grid-row: auto;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }


  .fishpool-intro {
    padding-top: 4rem;
  }

  .logbook-tabs {
    gap: 1rem;
  }
  
  .logbook-tabs a {
    font-size: 0.8rem;
    padding-bottom: 0.5rem;
  }


  .logbook-tabs {
    gap: 0.5rem;
  }
  
  .logbook-tabs a {
    font-size: 0.75rem;
    padding-bottom: 0.25rem;
  }

  .about-story-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  
  .about-how-it-works-section {
    padding-bottom: 4rem;
  }
  
  .about-features {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-feature {
    border-left: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0 1rem 2rem;
  }
  
  .about-feature:last-child {
    border-bottom: none;
  }
  
  .about-connect-section {
    padding: 4rem 0 6rem;
  }

  .logbook {
    padding-top: 5rem;
    padding-bottom: 4rem;
    min-height: 26.25rem;
  }
}


@media (max-width: 45rem) {

  :root {
    --shell: calc(100vw - 1.5rem);
    --drawer-width: min(72vw, 20rem);
  }


  .hero {
    min-height: 100svh;
  }


  .hero-media {
    height: 100%;
  }


  .hero-meta {
    bottom: 1.5rem;
  }


  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }


  .hero p {
    font-size: clamp(0.95rem, 4vw, 1.2rem);
  }


  .pill-button {
    right: 1rem;
    bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
  }


  .works.section-shell {
    padding-top: 0;
    padding-bottom: 0;
  }

  .works {
    padding-bottom: 6rem;
  }


  .masonry-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }


  .works-copy,
  .card-1,
  .card-2,
  .card-3,
  .card-4,
  .card-5,
  .card-6,
  .card-7,
  .card-8 {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }


  .works-copy {
    padding: 3rem 0 2rem;
  }


  .works-copy h2,
  .works-copy p {
    white-space: normal;
  }


  .centerpiece {
    padding: 2rem 0 7rem;
  }


  .centerpiece img {
    width: 2.5rem;
  }


  .band-blue {
    min-height: 15rem;
  }


  .band-purple {
    min-height: 22.5rem;
  }


  .logbook {
    min-height: 26.5rem;
    justify-content: space-between;
    padding-top: 3.75rem;
    padding-bottom: 3rem;
  }


  .logbook img {
    width: 3.25rem;
  }
}

/* Gallery Page Styles */
.gallery-page {
  padding-top: 6.5rem;
}


.gallery-header {
  text-align: center;
  padding: 1.5rem 0 2rem;
}


.gallery-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #101010;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Use padding instead of top/bottom absolute positioning for the box */
  padding: 0.1em 0; 
}


.gallery-title-text {
  position: relative;
  z-index: 1; /* Black text at bottom */
}


.gallery-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff; /* Text inside overlay is white */
  background-color: var(--blue);
  z-index: 2; /* Overlay is on top */
  display: flex;
  
  align-items: center;
  justify-content: center;
  /* 
   * clip-path creates a "window" to see the blue background and white text.
   * Left: cuts through 'e'
   * Right: cuts through 'a'
   */
clip-path: inset(0 36% 0 34.5%); 
}


.fishpool-title-overlay {
  position: absolute;
  top: -0.1em;
  bottom: -0.1em;
  left: 0;
  width: 100%;
  color: #fff;
  background-color: var(--blue);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 's' and 'o' are partially covered */
  clip-path: inset(0 29% 0 26%); 
}


.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 1rem;
  margin-bottom: 3rem;
  font-size: 1rem;
  position: relative;
  z-index: 5;
}

.gallery-page .gallery-header + .gallery-toolbar {
  margin-top: 1rem;
}


.gallery-tabs {
  display: flex;
  gap: 3.5rem;
}


.gallery-tabs a {
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 1.15rem;
  margin-bottom: -1.15rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-weight: 500;
}


.gallery-tabs a:hover {
  color: var(--text);
}


.gallery-tabs a.active {
  color: var(--text);
  border-bottom-color: var(--text);
}


.gallery-controls {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}


.sort-dropdown-container {
  position: relative;
}


.sort-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 12.5rem;
  height: 100%;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  background-color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}


.sort-dropdown.is-active {
  border-bottom-color: transparent;
}


.sort-dropdown svg {
  color: var(--muted);
  transition: transform 0.2s;
}


.sort-dropdown.is-active svg {
  transform: rotate(180deg);
}


.sort-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
}


.sort-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.sort-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}


.sort-option:first-child {
  border-top: none;
}


.sort-option:hover {
  background: #f9f9f9;
}


.sort-option.active {
  background: #f9f9f9;
}


.filter-toggle {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}


.filter-toggle img {
  width: 2.75rem;
  height: 2.75rem;
}


.gallery-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  min-width: 0;
}


.gallery-grid {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  column-count: 4;
  column-gap: 1.5rem;
}

.gallery-grid:has(> .hf-state) {
  column-count: 1;
}


.gallery-card {
  break-inside: avoid;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;

  overflow: hidden;
}


.gallery-card:hover .gallery-card__image img {
  transform: scale(1.05);
}


.gallery-card:hover .gallery-card__info h3 {
  color: var(--blue);
}


.gallery-card__image {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1.25rem;
}


.gallery-card__image img {
  width: 100%;
  display: block;
  /* Remove object-fit: cover to prevent cropping */
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


.gallery-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}


.gallery-card__info {
  display: flex;
  flex-direction: column;
}


.gallery-card__info h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}


.gallery-card__info p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}


.gallery-card__price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}


.gallery-badge {
  padding: 0.35rem 1rem;
  border-radius: 999rem;
  font-size: 0.85rem;
  font-weight: 400;
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  white-space: nowrap;
}


/* Sidebar */
.gallery-sidebar {
  width: 16rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}


.gallery-sidebar.is-toggled {
  display: block;
}


.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}


.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}


.filter-header img {
  width: 1rem;
  height: 1rem;
}


.filter-content {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


.filter-checkbox,
.filter-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}


.filter-checkbox input,
.filter-radio input {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: var(--text);
}


.gallery-load-more {
  display: flex;
  justify-content: center;
  padding: 4rem 0 8rem;
}


.load-more-btn {
  position: static;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 1rem 2rem;
}


.load-more-btn:hover {
  background: var(--text);
  color: #fff;
}


@media (max-width: 68.75rem) {
  .gallery-layout {
    flex-direction: column;
  }
  .gallery-sidebar {
    width: 100%;
    order: -1;
    margin-bottom: 2rem;
    display: none;
  }
  .gallery-sidebar.is-toggled {
    display: block;
  }
  .gallery-grid {
    column-count: 2;
  }
}


@media (max-width: 45rem) {
  .gallery-grid {
    column-count: 1;
  }
  .gallery-toolbar {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .gallery-tabs {
    gap: 1.5rem;
    font-size: 0.85rem;
    width: 100%;
    overflow-x: auto;
    /* Hide scrollbar for a cleaner look but keep it scrollable */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }
  .gallery-tabs a {
    white-space: nowrap;
  }
  .gallery-controls {
    width: 100%;
    justify-content: space-between;
  }
  .sort-dropdown-container {
    flex: 1;
    margin-right: 1rem;
  }
  .sort-dropdown {
    width: 100%;
  }
}


/* Cart Page Styles */
.cart-page {
  padding-top: 8.5rem;
  padding-bottom: 8rem;
  background-color: var(--page-bg);
}


.cart-layout {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}


.cart-items-section {
  flex: 1;
  background-color: #FAFAFA;
  border-radius: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}


.cart-title {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 0;
}


.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.cart-item {
  position: relative;
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 0.75rem;
  padding: 1.5rem;
}


.cart-item-remove {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}


.cart-item-remove:hover {
  color: var(--text);
}


.cart-item-content {
  display: flex;
  gap: 1.5rem;
}


.cart-item-image {
  width: clamp(8rem, 15vw, 12rem);
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  overflow: hidden;
}


.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.cart-item-details {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "info pricing"
    "save pricing";
  gap: 1rem 1.5rem;
}


.cart-item-header {
  grid-area: info;
  display: flex;
  flex-direction: column;
}


.cart-item-info {
  display: flex;
  flex-direction: column;
}


.cart-item-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.85rem;
}


.cart-label {
  color: var(--text);
  font-size: 0.875rem;
}


.cart-label.total {
  font-weight: 600;
}


.cart-item-info h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}


.cart-item-artist {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 0.35rem;
}


.cart-item-type {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}


.cart-item-save {
  grid-area: save;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: color 0.2s;
  align-self: end;
  margin-top: 1rem;
}


.cart-item-save:hover {
  color: var(--text);
}


.cart-item-pricing {
  grid-area: pricing;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
}


.cart-pricing-row {
  display: flex;
  justify-content: flex-end;
  font-size: 0.875rem;
}


.cart-pricing-row.total {
  font-weight: 600;
  font-size: 0.875rem;
}


.cart-pricing-row.final-sale {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}


.cart-promo-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  padding: 0;
  margin-top: 2.5rem;
  cursor: pointer;
  letter-spacing: 0.05em;
}


.cart-summary-section {
  width: clamp(18rem, 30vw, 24rem);
  flex-shrink: 0;
}


.cart-summary-card {
  background-color: #FAFAFA;
  border-radius: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
}


.summary-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}


.summary-row.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}


.summary-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}


.summary-disclaimer p {
  margin: 0 0 0.5rem;
}


.summary-disclaimer p:last-child {
  margin-bottom: 0;
}


.checkout-btn {
  width: 100%;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 1.125rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}


.checkout-btn:hover {
  background: #333;
}


@media (max-width: 68.75rem) {
  .cart-layout {
    flex-direction: column;
  }
  .cart-summary-section {
    width: 100%;
  }
  .cart-item-image {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
  }
  .cart-item-image img {
    width: 100%;
    height: auto;
  }
  .cart-item-content {
    flex-direction: column;
  }
  .cart-item-details {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .cart-item-pricing {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 0;
  }
  .cart-pricing-row {
    width: 100%;
    justify-content: space-between;
  }
  .cart-label {
    margin-right: 0;
  }
}


/* Spaces Page Styles */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}


.space-card {
  background: #F9F9F9;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}


.space-card:hover {
  transform: translateY(-0.25rem);
}

.creator-space-card {
  color: inherit;
}

.creator-space-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.spaces-grid .hf-state {
  grid-column: 1 / -1;
}


.space-card-inner {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.space-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}


.space-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #E0E0E0;
  background-size: cover;
  background-position: center;
}


/* Avatar Placeholder Colors */
.space-avatar.bg-black { background-color: #101010; }

.space-avatar.bg-gray { background-color: #4A4A4A; }

.space-avatar.bg-blue { background-color: #4A90E2; }

.space-avatar.bg-orange { background-color: #F5A623; }

.space-avatar.bg-dark-gray { background-color: #333333; }

.space-avatar.bg-teal { background-color: #50E3C2; }

.space-avatar.bg-purple { background-color: #9013FE; }

.space-avatar.bg-red { background-color: #D0021B; }

.space-avatar.bg-pink { background-color: #F78DA7; }


.space-creator-info h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}


.creator-badge {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 500;
}


.space-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.space-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}


.space-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1.5rem;
  flex: 1;
}


.space-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}


.space-tags .tag {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0;
  background: transparent;
}


.space-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}


.space-follow-btn {
  background: transparent;
  border: 1px solid var(--text);
  border-radius: 999rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.space-follow-btn:hover {
  background: var(--text);
  color: #fff;
}


/* Curated Streams Page Styles */
.streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}


.stream-card {
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
}


.stream-image {
  width: 100%;
  aspect-ratio: 1.06 / 1;
  overflow: hidden;
}


.stream-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


.stream-card:hover .stream-image img {
  transform: scale(1.05);
}


.stream-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  background: #FAFAFA;
  position: relative;
  z-index: 1;
}


.stream-card .wave-overlay {
  display: none;
}


.stream-date {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 0.5rem;
}


.stream-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #101828;
  margin: 0 0 0.5rem 0;
}


.stream-curator {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 0.5rem;
}


.stream-desc {
  font-size: 1rem;
  color: #4A5565;
  margin: 0;
  line-height: 1.5;
}


/* Work Detail Page Styles */
.work-detail-page {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: var(--page-bg);
}


.work-hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}


.work-images-gallery {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2.5rem max(1.25rem, calc((100vw - var(--shell)) / 2 + 1.25rem));
  scroll-padding-inline: max(1.25rem, calc((100vw - var(--shell)) / 2 + 1.25rem));
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}


.work-images-gallery img {
  flex: 0 0 clamp(28rem, 54vw, 62rem);
  width: clamp(28rem, 54vw, 62rem);
  max-width: none;
  height: min(60vh, 42rem);
  min-height: 500px;
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.5s ease;
}

.work-images-gallery::-webkit-scrollbar {
  height: 0.5rem;
}

.work-images-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.work-images-gallery::-webkit-scrollbar-thumb {
  background: #d0d5dd;
  border-radius: 999rem;
}

.work-images-gallery:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -0.25rem;
}


.work-images-gallery img:hover {
  transform: scale(1.02);
}


.work-info-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}


.work-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #101828;
  margin: 0;
}


.work-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  color: #101828;
  font-weight: 500;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: min(42rem, 100%);
}

.work-tags span {
  border: 1px solid #d0d5dd;
  border-radius: 999rem;
  color: #344054;
  font-size: 0.8125rem;
  line-height: 1.25;
  padding: 0.3125rem 0.625rem;
}

.content-source-marker {
  border: 1px solid #c7d7fe;
  border-radius: 999rem;
  color: #175cd3;
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.5rem;
  padding: 0.25rem 0.375rem;
  vertical-align: middle;
}

.fishpool-related-section {
  border-top: 1px solid #e4e7ec;
  margin-top: 3rem;
  padding-top: 2rem;
}

.fishpool-related-heading h2 {
  color: #101828;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.fishpool-related-works,
.fishpool-related-creators {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fishpool-related-creators .creator-space-card {
  min-width: 0;
}

@media (max-width: 48rem) {
  .fishpool-related-works,
  .fishpool-related-creators {
    grid-template-columns: 1fr;
  }
}

.work-purchase-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: -0.35rem;
  font-size: 1rem;
  color: #101828;
  flex-wrap: wrap;
  justify-content: center;
}

.work-purchase-price {
  font-weight: 700;
}

.work-purchase-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #f2f4f7;
  color: #4a5565;
  font-size: 0.8rem;
  font-weight: 600;
}

.work-purchase-meta.is-unavailable {
  gap: 0.6rem;
  color: #475467;
}

.work-purchase-meta.is-unavailable .work-purchase-status {
  background: #fff4ed;
  color: #b93815;
}

.work-purchase-note {
  color: #667085;
  font-size: 0.9rem;
  line-height: 1.45;
}


.dot-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #101828;
}


.work-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}


.action-btn {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  position: relative;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.2s, background-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.action-btn svg {
  flex: 0 0 auto;
}

.action-btn-primary {
  width: auto;
  min-width: 10rem;
  padding: 0 1.15rem;
  border-radius: 999px;
}

.action-btn-text {
  white-space: nowrap;
}


.action-btn:hover {
  transform: translateY(-1px);
  background-color: #333;
}

.action-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.action-btn-icon[data-action-tooltip]::after {
  content: attr(data-action-tooltip);
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  z-index: 20;
  min-width: max-content;
  max-width: 12rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid #eaecf0;
  border-radius: 0.45rem;
  background: #101828;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 0.6rem 1.5rem rgba(16, 24, 40, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.25rem);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.action-btn-icon[data-action-tooltip]:hover::after,
.action-btn-icon[data-action-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.action-btn.active,
.action-btn[aria-pressed="true"] {
  background-color: var(--blue);
  color: #fff;
}

.action-btn:disabled {
  cursor: not-allowed;
  opacity: 1;
  background-color: #f2f4f7;
  color: #98a2b3;
  transform: none;
  box-shadow: none;
}

.action-btn:disabled:hover {
  background-color: #f2f4f7;
  transform: none;
}

@media (max-width: 480px) {
  .work-actions {
    gap: 0.65rem;
  }

  .action-btn-primary {
    min-width: 9.25rem;
    padding: 0 0.9rem;
  }
}


.work-about-section {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}


.about-content {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}


.about-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #101828;
  margin: 0;
}


.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #101828;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text.is-empty {
  color: var(--muted);
}


.creator-card {
  background: #FAFAFA;
  padding: 2.5rem;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.creator-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.creator-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}


.creator-info h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: #101828;
}


.creator-body h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #101828;
  margin: 0 0 1rem;
}


.creator-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 1.5rem;
}


.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


.creator-tags .tag {
  font-size: 0.875rem;
  color: #4A5565;
  white-space: nowrap;
}


.creator-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}


.creator-follow-btn {
  background: transparent;
  border: 1px solid var(--text);
  border-radius: 999rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}


.creator-follow-btn:hover {
  background: #02B1F3;
  color: #fff;
  border-color: #02B1F3;
}

.creator-follow-btn.is-following,
.creator-follow-btn[aria-pressed="true"] {
  background: #101828;
  color: #fff;
  border-color: #101828;
}


.more-works-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}


.more-works-title {
  font-size: 2rem;
  font-weight: 600;
  color: #101828;
  margin: 0;
}


.more-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}


.work-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}


.work-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}


.work-image-container .work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


.work-card:hover .work-image {
  transform: scale(1.05);
}


.work-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
}


.work-card-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}


.work-card-info p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
}


.work-availability {
  font-size: 0.625rem;
  background: #000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* Creator Profile Page Styles */
.creator-profile-page {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: var(--page-bg);
}


.creator-hero-section {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
}


.creator-hero-container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.creator-cover-media {
  width: 100%;
  aspect-ratio: 5 / 2;
  border-radius: 8px;
  overflow: hidden;
  background: #EDEEF0;
}

.creator-cover-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-hero-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}


.creator-hero-avatar {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #EDEEF0;
}


.creator-hero-avatar img,
.creator-hero-avatar span {
  width: 100%;
  height: 100%;
}

.creator-hero-avatar img {
  object-fit: cover;
}

.creator-hero-avatar span {
  display: grid;
  place-items: center;
  background: #37C3FF;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
}


.creator-hero-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}


.creator-hero-info h1 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #272E39;
  margin: 0;
  line-height: 1.5;
}


.creator-hero-info .creator-badge {
  font-size: 0.75rem;
  background-color: #37C3FF;
  color: #fff;
  padding: 0.125rem 0.5rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0.25rem;
}


.creator-hero-header .follow-btn {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
}


.creator-bio-section {
  display: flex;
  gap: 1.25rem;
}


.creator-bio-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}


.creator-bio-left h2 {
  font-size: 3.75rem;
  font-weight: 500;
  color: #101828;
  margin: 0;
  line-height: 1.2;
}


.creator-bio-left p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #101828;
  text-align: justify;
  margin: 0;
  max-width: 90%;
}

.creator-experience-heading {
  margin-top: 2rem !important;
}

.creator-bio-right {
  width: 28.75rem;
  background-color: #F7F7F7;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.bio-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}


.stat-label {
  font-size: 0.875rem;
  color: #666666;
}


.stat-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #101828;
}


.creator-logbook-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.creator-curations-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 8rem;
}

.creator-curations-grid {
  width: 100%;
  max-width: 1000px;
}


.logbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}


.logbook-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 0;

  overflow: hidden;
}


.logbook-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #F4F4F4;
}


.logbook-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.logbook-date {
  font-size: 0.875rem;
  color: #666666;
}


.logbook-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #101828;
  margin: 0;
}


.logbook-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #4A5565;
  margin: 0.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.logbook-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}


.logbook-tags .tag {
  font-size: 0.875rem;
  color: #666666;
  background: #F4F4F4;
  padding: 0.25rem 0.75rem;
  border-radius: 999rem;
}


.similar-creators-section {
  display: block;
  margin: 0 0 4rem 0;
  width: 100%;
}


.similar-creators-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}


.similar-creators-section .more-works-title {
  text-align: left;
  margin-bottom: 3rem;
  padding: 0;
}


.similar-creators-list {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}


.similar-creators-list::-webkit-scrollbar {
  display: none;
}


.similar-creators-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.similar-creators-list .space-card {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
}

.similar-creators-list .hf-state {
  width: 100%;
}

.similar-creator-avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #101828;
  font-size: 0.875rem;
  font-weight: 600;
}

.similar-creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Stream Detail Page Styles */
.stream-detail-page {
  padding-top: 8rem;
  padding-bottom: 0;
  background-color: var(--page-bg);
}


.stream-detail-article {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.stream-detail-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}


.stream-detail-hero-image {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  overflow: hidden;
}


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


.stream-detail-hero-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


.stream-detail-hero-info h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}


.stream-detail-curator, .stream-detail-desc {
  font-size: 0.875rem;
  color: var(--text);
  margin: 0;
}


.stream-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}


.stream-detail-curator-card {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 800px;
  margin: 0 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.stream-detail-curator-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.stream-detail-curator-header .avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  background: #e9e9e9;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 0.75rem;
  font-weight: 600;
}


.stream-detail-curator-header .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-detail-curator-header .avatar span {
  display: inline-block;
}


.stream-detail-curator-header .info h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.25rem 0;
}


.stream-detail-curator-header .creator-badge {
  font-size: 0.7rem;
  background-color: #37C3FF;
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  display: inline-block;
}


.stream-detail-curator-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}


.stream-detail-curator-content p {
  font-size: 0.875rem;
  color: #4A5565;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}


.stream-detail-curator-content .tags {
  display: flex;
  gap: 0.75rem;
}


.stream-detail-curator-content .tags span {
  font-size: 0.75rem;
  color: #8A94A6;
}


.stream-detail-curator-action {
  display: flex;
  justify-content: center;
}

.artists-action{
  width: 100%;
  display: flex;
  justify-content: center;
}

.stream-detail-statement {
  width: 100%;
  max-width: 800px;
  padding: 0 1.5rem;
  margin-bottom: 6rem;
}


.stream-detail-statement h2 {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 3rem 0;
}


.statement-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.statement-text p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.statement-text.is-empty p {
  color: var(--muted);
}


.stream-detail-works {
  width: 100%;
  max-width: 800px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-bottom: 8rem;
}


.stream-work-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.stream-work-item .work-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: #F9F9F9;
}


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

.stream-work-item.is-unavailable {
  color: #5c6575;
}

.stream-work-item .unavailable-placeholder {
  border: 1px dashed #cfd6e2;
  background: #f6f8fb;
  display: grid;
  place-items: center;
}

.stream-work-item .unavailable-placeholder span {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}


.stream-work-item .work-info h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.25rem 0;
}


.stream-work-item .work-info .artist {
  font-size: 0.875rem;
  color: #8A94A6;
  margin: 0 0 1rem 0;
}


.stream-work-item .work-info .desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}


.stream-detail-artists {
  width: 100%;
  background: #F9F9F9;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
}


.artists-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.artists-container h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 3rem 0;
}


.artists-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}


.artist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}


.artist-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: #e9e9e9;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 0.8rem;
  font-weight: 600;
}


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

.artist-avatar span {
  display: inline-block;
}

.artists-grid .hf-state {
  width: min(100%, 36rem);
}


.artist-name {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}


.artist-item .creator-badge {
  font-size: 0.7rem;
  background-color: #37C3FF;
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  display: inline-block;
}


/* Ripple Plan Page Styles */
.ripple-page {
  padding-top: 6.5rem;
  padding-bottom: 6rem;
  background-color: var(--page-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ripple-hero {
  max-width: 800px;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.ripple-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #101828;
  margin: 0 0 1.5rem 0;
}


.ripple-subtitle {
  font-size: 1rem;
  color: #4A5565;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}


.ripple-features {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 6rem;
  padding: 0 1rem;
}


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


.feature-card {
  background-color: #FAFAFA;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.feature-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid #E5E7EB;
}


.feature-icon img {
  width: 2.25rem;
  height: 2.25rem;
}


.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #101828;
  margin: 0 0 0.75rem 0;
}


.feature-card p {
  font-size: 0.875rem;
  color: #4A5565;
  line-height: 1.5;
  margin: 0;
  opacity: 0.6;
}


.ripple-content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem;
}


.content-header {
  margin-bottom: 3rem;
}


.content-header h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #101828;
  margin: 0 0 1.5rem 0;
}


.content-header p {
  font-size: 1rem;
  color: #4A5565;
  line-height: 1.6;
  margin: 0;
}


.ripple-showcase {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.showcase-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F9F9F9;
  overflow: hidden;
}


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


.showcase-info h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #101828;
  margin: 0 0 0.5rem 0;
}


.showcase-artist {
  font-size: 0.875rem;
  color: #8A94A6;
  display: block;
  margin-bottom: 1rem;
}


.showcase-desc {
  font-size: 0.875rem;
  color: #4A5565;
  line-height: 1.6;
  margin: 0;
}


@media (max-width: 68.75rem) {
  .logbook-masonry-container {
    flex-direction: column;
  }
  .creator-bio-section {
    flex-direction: column;
  }
  .creator-cover-media {
    aspect-ratio: 16 / 7;
  }
  .creator-bio-right {
    width: 100%;
  }
  .logbook-detail-features {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .logbook-detail-hero {
    height: auto;
    aspect-ratio: 16/9;
  }
  .logbook-detail-title {
    font-size: 2.5rem;
  }
  .logbook-detail-header {
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .logbook-detail-actions {
    justify-content: flex-start;
  }
  .spaces-grid, .streams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-images-gallery {
    gap: 2rem;
    padding: 2rem 1.25rem;
    scroll-padding-inline: 1.25rem;
  }
  .work-images-gallery img {
    flex-basis: min(82vw, 36rem);
    width: min(82vw, 36rem);
    max-width: none;
    height: 40vh;
    min-height: 300px;
  }
}


@media (max-width: 45rem) {
  .logbook-tabs {
    width: 100%;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0.5rem;
  }
  .logbook-tabs::-webkit-scrollbar {
    display: none;
  }
  .logbook-tabs a {
    white-space: nowrap;
  }
  .creator-hero-header {
    flex-direction: column;
    text-align: center;
  }
  .creator-bio-left h2 {
    font-size: 2.25rem;
  }
  .creator-bio-left p {
    max-width: 100%;
    text-align: left;
  }
  .logbook-grid {
    grid-template-columns: 1fr;
  }
  .spaces-grid, .streams-grid {
    grid-template-columns: 1fr;
  }
  .work-images-gallery {
    gap: 2rem;
  }
  .work-images-gallery img {
    flex-basis: 82vw;
    width: 82vw;
    max-width: 82vw;
    height: auto;
    min-height: 0;
  }
  .more-works-grid {
    grid-template-columns: 1fr;
  }
  .space-card-inner {
    padding: 1.5rem;
  }
  .similar-creators-list {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: visible;
    flex-direction: column;
  }
  .similar-creators-list .space-card {
    width: 100%;
    flex-basis: auto;
  }
  .cart-page {
    padding-top: 6.5rem;
  }
}


/* Fishpool Page Styles */
.fishpool-page {
  padding-top: 6.5rem;
  padding-bottom: 6rem;
  background-color: var(--page-bg);
}

.fishpool-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 2rem;
  margin-bottom: 2rem;
}


.fishpool-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #101010;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}


.fishpool-title .blue-mask {
  background-color: var(--blue);
  color: #fff;
  padding: 0.1em 0.1em;
  margin: 0;
  display: inline-block;
  line-height: 1.1;
}


.fishpool-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}


.fishpool-card {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  width: 100%;
  padding: 2.5rem;
  color: #fff;
}


.fishpool-card.bg-blue {
  background-color: #02B1F3;
}


.fishpool-card.bg-purple {
  background-color: #501579;
}


.fishpool-card.bg-magenta {
  background-color: #D20B7A;
}


.fishpool-card-image {
  flex: 0 0 45%;
  aspect-ratio: 16/9;
  overflow: hidden;
}


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


.fishpool-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}


.fishpool-card-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}


.fishpool-card-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  max-width: 90%;
  opacity: 0.9;
}


.fishpool-card-content .pill-button {
  background-color: #fff;
  color: #101010;
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
}


.fishpool-card-content .pill-button:hover {
  background-color: transparent;
  color: #fff;
}


@media (max-width: 68.75rem) {
  .fishpool-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .fishpool-card-image {
    flex: none;
    width: 100%;
  }
  .fishpool-card-content p {
    max-width: 100%;
  }
  
  .about-features {
    flex-direction: column;
  }
  .about-feature {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 4rem 1rem;
  }
  .about-feature:first-child {
    border-top: none;
  }
  .about-connect-section {
    padding: 4rem 1rem 6rem;
  }
  .about-header {
    padding: 2rem 0 4rem;
  }
  .about-story-section {
    padding-bottom: 4rem;
  }
  .about-how-it-works-section {
    padding-bottom: 4rem;
  }
}


/* Global Image Card Hover Effects */
.work-card, .logbook-card-image, .curation-image, .myspace-work-card .work-card-image, .gallery-card__image, .stream-image, .work-image-container, .logbook-detail-large-image, .fishpool-card-image {
  position: relative;
  overflow: hidden;
}

.work-card img, .logbook-card-image img, .curation-image img, .myspace-work-card .work-card-image img, .gallery-card__image img, .stream-image img, .work-image-container img, .fishpool-card-image img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover img, .logbook-card:hover .logbook-card-image img, .curation-card:hover .curation-image img, .myspace-work-card:hover .work-card-image img, .gallery-card:hover .gallery-card__image img, .stream-card:hover .stream-image img, .work-card:hover .work-image-container img, .fishpool-card:hover .fishpool-card-image img {
  transform: scale(1.05);
}

.hf-image-fallback {
  width: 100%;
  object-fit: contain !important;
  padding: clamp(1.5rem, 8vw, 4rem);
  border: 1px solid rgba(16, 16, 16, 0.08);
  background:
    linear-gradient(135deg, rgba(10, 176, 243, 0.08), rgba(75, 10, 118, 0.06)),
    #f4f6f8;
}

.gallery-card__image img.hf-image-fallback,
.work-card img.hf-image-fallback,
.work-image-container img.hf-image-fallback,
.stream-image img.hf-image-fallback,
.fishpool-card-image img.hf-image-fallback,
.logbook-card-image img.hf-image-fallback,
.curation-image img.hf-image-fallback {
  min-height: 16rem;
}

.cart-item-image img.hf-image-fallback,
.order-item-image img.hf-image-fallback,
.selected-work-card img.hf-image-fallback,
.saved-artwork-img.hf-image-fallback,
.myspace-work-card .work-card-image img.hf-image-fallback {
  min-height: 100%;
}

.work-images-gallery img.hf-image-fallback,
.logbook-detail-hero.hf-image-fallback,
.logbook-detail-large-image.hf-image-fallback,
.stream-detail-hero-image img.hf-image-fallback,
.fishpool-detail-hero img.hf-image-fallback {
  min-height: clamp(18rem, 42vw, 34rem);
}

.gallery-card:hover .gallery-card__image img.hf-image-fallback,
.work-card:hover img.hf-image-fallback,
.stream-card:hover .stream-image img.hf-image-fallback,
.fishpool-card:hover .fishpool-card-image img.hf-image-fallback {
  transform: none;
}

.hf-state {
  width: 100%;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #1C1917;
}

.hf-detail-state .hf-state {
  align-items: center;
  text-align: center;
}

.gallery-grid > .hf-state,
.saved-artworks-grid > .hf-state,
.curations-grid > .hf-state,
.logbook-grid > .hf-state {
  grid-column: 1 / -1;
}

.hf-state h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 650;
}

.hf-cart-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hf-cart-section-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E6E8EC;
}

.hf-cart-section-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
}

.hf-cart-section-header p,
.cart-item-reason {
  margin: 0.25rem 0 0;
  color: #667085;
  font-size: 0.875rem;
  line-height: 1.45;
}

.hf-cart-section-header > span {
  display: inline-flex;
  min-width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #F2F4F7;
  color: #344054;
  font-weight: 650;
  font-size: 0.875rem;
}

.cart-item.is-unavailable {
  background: #FAFAFA;
}

.cart-item.is-unavailable .cart-item-image img {
  filter: grayscale(0.45);
}

.hf-cart-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.order-items-snapshot {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-items-snapshot .order-item-info-section + .order-item-info-section {
  padding-top: 1.5rem;
  border-top: 1px solid #E6E8EC;
}

.order-total-meta {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 0;
  border-top: 1px solid #E6E8EC;
  color: #475467;
  font-size: 0.95rem;
}

.hf-state p {
  margin: 0;
  max-width: 36rem;
  color: rgba(28, 25, 23, 0.68);
  line-height: 1.55;
}

.hf-state-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid #1C1917;
  border-radius: 8px;
  background: #1C1917;
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}

.hf-checkout-note {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: #F4F7F2;
  color: #1C1917;
  font-size: 0.86rem;
  line-height: 1.45;
}

.hf-checkout-note strong {
  font-weight: 700;
}

.hf-guest-checkout {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.1rem;
}

.hf-guest-checkout label {
  color: #1C1917;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hf-guest-checkout input {
  min-height: 2.9rem;
  width: 100%;
  border: 1px solid #D9DEE7;
  border-radius: 8px;
  background: #fff;
  color: #1C1917;
  padding: 0 0.9rem;
  font: inherit;
  font-size: 0.95rem;
}

.hf-guest-checkout input:focus {
  border-color: #1C1917;
  box-shadow: 0 0 0 3px rgba(28, 25, 23, 0.09);
  outline: none;
}

.hf-guest-checkout p {
  margin: 0;
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.45;
}

.guest-order-page {
  min-height: calc(100vh - 8rem);
  padding: clamp(2rem, 5vw, 4.5rem) 0;
  background: #F7F8FA;
}

.guest-order-page .section-shell {
  display: grid;
  gap: 1.25rem;
}

.guest-order-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guest-order-header .btn-back {
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.guest-order-kicker {
  margin: 0 0 0.25rem;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guest-order-subtitle {
  max-width: 42rem;
  margin: 0.35rem 0 0;
  color: #667085;
  line-height: 1.5;
}

.guest-order-page .order-detail-card {
  width: min(100%, 62rem);
  background: #fff;
}

.checkout-btn:disabled,
.btn-black:disabled,
.hf-state-action:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hf-page-notice {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(23, 92, 211, 0.16);
  background: #EFF8FF;
  color: #175CD3;
  font-size: 0.9rem;
}

.hf-page-notice.success {
  border-color: rgba(2, 122, 72, 0.16);
  background: #ECFDF3;
  color: #027A48;
}

.content-rejection-note {
  margin: 0.65rem 0 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(180, 35, 24, 0.16);
  border-radius: 8px;
  background: #FEF3F2;
  color: #912018;
  font-size: 0.82rem;
  line-height: 1.45;
}

.content-rejection-note strong {
  font-weight: 700;
}

@media (max-width: 48rem) {
  .guest-order-header {
    flex-direction: column;
  }

  .guest-order-page {
    padding-top: 1.5rem;
  }
}

.hf-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10000;
  max-width: min(26rem, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: #1C1917;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(0.75rem);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hf-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hf-share-fallback {
  position: fixed;
  right: 1.5rem;
  bottom: 5.5rem;
  z-index: 10020;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: min(32rem, calc(100vw - 3rem));
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hf-share-fallback label {
  display: grid;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.hf-share-fallback input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  color: var(--text);
}

.hf-share-fallback button {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  background: #f7f7f7;
  cursor: pointer;
}

.hf-toast.error {
  background: #B42318;
}

.auth-inline-notice {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: #FFF4ED;
  color: #B93815;
  font-size: 0.875rem;
}

.hf-detail-state {
  min-height: 60vh;
  display: grid;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.gallery-result-status {
  margin: -1rem auto 1.5rem;
  color: rgba(28, 25, 23, 0.62);
  font-size: 0.9rem;
}

.fishpool-detail-page {
  padding: 8rem 0 6rem;
}

.fishpool-detail-root {
  display: grid;
  gap: 2rem;
}

.hf-back-link {
  color: rgba(28, 25, 23, 0.62);
  text-decoration: none;
  font-size: 0.9rem;
}

.hf-back-link:hover {
  color: #1C1917;
}

.fishpool-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.fishpool-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #F2F4F7;
}

.fishpool-detail-hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.4rem, 7vw, 5.25rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.fishpool-detail-hero p,
.fishpool-detail-body {
  color: rgba(28, 25, 23, 0.72);
  line-height: 1.65;
}

.fishpool-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.fishpool-detail-meta span {
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  color: rgba(28, 25, 23, 0.68);
}

.hf-save-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 0.25rem;
  padding: 0 1rem;
  border: 1px solid rgba(28, 25, 23, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #1C1917;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hf-save-inline:hover {
  border-color: rgba(28, 25, 23, 0.32);
  background: #F5F5F4;
}

.hf-save-inline:focus-visible {
  outline: 3px solid rgba(10, 176, 243, 0.28);
  outline-offset: 3px;
}

.hf-save-inline:active {
  transform: translateY(1px);
}

.hf-save-inline.active,
.hf-save-inline[aria-pressed="true"] {
  border-color: #1C1917;
  background: #1C1917;
  color: #fff;
}

.hf-save-inline:disabled,
.hf-save-inline[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
}

.fishpool-detail-body {
  max-width: 48rem;
}

.hf-rsvp-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 48rem;
  padding: 1rem;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 8px;
  background: #fff;
}

.hf-rsvp-panel h2,
.hf-notification-panel h2,
.hf-notification-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.hf-rsvp-panel p {
  margin: 0.25rem 0 0;
  color: rgba(28, 25, 23, 0.64);
  font-size: 0.9rem;
}

.hf-notification-panel {
  position: absolute;
  z-index: 10030;
  width: min(24rem, calc(100vw - 1.5rem));
  max-height: min(32rem, calc(100vh - 2rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(28, 25, 23, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(28, 25, 23, 0.18);
  overflow: hidden;
}

.hf-notification-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
}

.hf-notification-panel header button {
  border: 0;
  background: transparent;
  color: rgba(28, 25, 23, 0.62);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
}

.hf-notification-list {
  overflow: auto;
}

.hf-notification-item {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.hf-notification-item.is-read {
  opacity: 0.62;
}

.hf-notification-item p,
.hf-notification-item span {
  margin: 0.25rem 0 0;
  color: rgba(28, 25, 23, 0.64);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hf-notification-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hf-state-action.secondary {
  border-color: rgba(28, 25, 23, 0.14);
  background: #fff;
  color: #1C1917;
}

.legal-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 4rem 0;
  background: #FAFAFA;
}

.hf-legal-shell {
  display: grid;
  gap: 1.25rem;
}

.hf-legal-shell .brand img {
  width: 5rem;
}

.hf-legal-shell h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
}

.hf-legal-shell p {
  max-width: 42rem;
  color: rgba(28, 25, 23, 0.72);
  line-height: 1.65;
}

.hf-page-notice a {
  color: inherit;
  font-weight: 700;
}

.badge-red {
  background: #FEF3F2;
  color: #B42318;
}

.admin-page {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  background: #FAFAFA;
}

.admin-shell {
  width: min(72rem, 100%);
  margin: 0 auto;
}

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

.admin-header h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0;
}

.admin-header p {
  margin: 0.5rem 0 0;
  max-width: 42rem;
  color: rgba(28, 25, 23, 0.68);
  line-height: 1.55;
}

.admin-orders-list {
  display: grid;
  gap: 1rem;
}

.admin-order-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.admin-order-main {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.admin-order-eyebrow {
  margin: 0 0 0.35rem;
  color: rgba(28, 25, 23, 0.58);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-order-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.admin-order-card p {
  margin: 0.35rem 0 0;
  color: rgba(28, 25, 23, 0.68);
}

.admin-order-statuses {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  text-align: right;
}

.admin-fulfillment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.admin-fulfillment-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(28, 25, 23, 0.68);
}

.admin-fulfillment-form input {
  min-height: 2.65rem;
  border: 1px solid rgba(28, 25, 23, 0.14);
  border-radius: 8px;
  padding: 0 0.8rem;
  font: inherit;
  color: #1C1917;
  background: #fff;
}

.admin-fulfillment-form input:disabled {
  background: #F5F5F4;
}

@media (max-width: 48rem) {
  .hf-state {
    min-height: 10rem;
    padding: 1.25rem;
  }

  .admin-header,
  .admin-order-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-order-statuses {
    justify-content: flex-start;
    text-align: left;
  }

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

  .fishpool-detail-page {
    padding-top: 6rem;
  }

  .fishpool-detail-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hf-rsvp-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

/* 
.work-card::after, .logbook-card-image::after, .curation-image::after, .myspace-work-card .work-card-image::after, .gallery-card__image::after, .stream-image::after, .work-image-container::after,
.work-card::before, .logbook-card-image::before, .curation-image::before, .myspace-work-card .work-card-image::before, .gallery-card__image::before, .stream-image::before, .work-image-container::before,
.work-card__content::after, .logbook-card__content::after, .curation-card__content::after, .myspace-work-card__content::after, .gallery-card__content::after, .stream-card__content::after, .work-card__content::after, .wave-overlay::after,
.work-card__content::before, .logbook-card__content::before, .curation-card__content::before, .myspace-work-card__content::before, .gallery-card__content::before, .stream-card__content::before, .work-card__content::before, .wave-overlay::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 220%;
  height: 220%;
  transform: translate(-50%, 0) rotate(0deg);
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.work-card::after, .logbook-card-image::after, .curation-image::after, .myspace-work-card .work-card-image::after, .gallery-card__image::after, .stream-image::after, .work-image-container::after {
  border-radius: 20%;
  box-shadow: inset 0 0 20px 10px rgba(255, 255, 255, 0.3);
  transition-duration: 1s;
  z-index: 2;
}

.work-card::before, .logbook-card-image::before, .curation-image::before, .myspace-work-card .work-card-image::before, .gallery-card__image::before, .stream-image::before, .work-image-container::before {
  border-radius: 30%;
  box-shadow: inset 0 0 15px 8px rgba(224, 224, 224, 0.2);
  transition-duration: 1.8s;
  z-index: 1;
}

.work-card__content::after, .logbook-card__content::after, .curation-card__content::after, .myspace-work-card__content::after, .gallery-card__content::after, .stream-card__content::after, .work-card__content::after, .wave-overlay::after {
  border-radius: 17%;
  box-shadow: inset 0 0 25px 12px rgba(242, 242, 242, 0.4);
  transition-duration:1.6s;
  z-index: -2;
}

.work-card:hover::after, .logbook-card:hover .logbook-card-image::after, .curation-card:hover .curation-image::after, .myspace-work-card:hover .work-card-image::after, .gallery-card:hover .gallery-card__image::after, .stream-card:hover .stream-image::after, .work-card:hover .work-image-container::after {
  transform: translate(-50%, -70%) rotate(0deg);
}

.work-card:hover::before, .logbook-card:hover .logbook-card-image::before, .curation-card:hover .curation-image::before, .myspace-work-card:hover .work-card-image::before, .gallery-card:hover .gallery-card__image::before, .stream-card:hover .stream-image::before, .work-card:hover .work-image-container::before {
  transform: translate(-50%, -70%) rotate(0deg);
}

.work-card:hover .work-card__content::after, .logbook-card:hover .logbook-card__content::after, .curation-card:hover .curation-card__content::after, .myspace-work-card:hover .myspace-work-card__content::after, .gallery-card:hover .gallery-card__content::after, .stream-card:hover .stream-card__content::after, .work-card:hover .work-card__content::after, .logbook-card:hover .wave-overlay::after, .curation-card:hover .wave-overlay::after, .myspace-work-card:hover .wave-overlay::after, .gallery-card:hover .wave-overlay::after, .stream-card:hover .wave-overlay::after, .work-image-container:hover .wave-overlay::after {
  transform: translate(-50%, -70%) rotate(0deg);
}
*/


.wave-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.54) 100%);
}

