/* Liquid horizon · grain & glow · twilight palette */
:root {
  --sand-base-tone: #e6dfd3;
  --twilight-ink-soft: #4a5a77;
  --amber-glint-warm: #d4a373;
  --mist-white-glass: rgba(255, 255, 255, 0.42);
  --panel-shadow-soft: rgba(74, 90, 119, 0.12);

  --color-primary: #4a5a77;
  --color-secondary: #e6dfd3;

  --font-primary: "Newsreader", Georgia, serif;
  --font-secondary: "Lora", Georgia, serif;

  --space-xs: 0.35rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  --radius-fluid-a: 38% 62% 63% 37% / 41% 44% 56% 59%;
  --radius-fluid-b: 55% 45% 54% 46% / 48% 46% 54% 52%;

  --radius-md: 0.95rem;

  --transition-fast: 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow-breathe: 6s ease-in-out infinite;

  --header-offset-layer: 3.85rem;

  --line-width-reading: min(92%, 38rem);

  --focus-ring-strong: 0 0 0 0.2rem rgba(212, 163, 115, 0.45);

  scroll-behavior: smooth;
}

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

html {
  overflow-x: hidden;
  font-size: clamp(93.75%, 2.1vw, 100%);
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: var(--font-primary);
  color: var(--twilight-ink-soft);
  background: var(--sand-base-tone);
  line-height: 1.65;
  transition: opacity 1.2s var(--transition-fast);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' stitchTiles='stitch' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
  opacity: 0.45;
  z-index: 0;
}

body[data-ui-rest-mode="still"] .floating-horizon-header,
body[data-ui-rest-mode="still"] .site-main-grow,
body[data-ui-rest-mode="still"] .soft-footband-minimal,
body[data-ui-rest-mode="still"] .mobile-route-overlay-panel {
  opacity: 0.1;
  transition: opacity 3s ease;
}

body[data-ui-rest-mode="still"]:hover .floating-horizon-header,
body[data-ui-rest-mode="still"]:hover .site-main-grow,
body[data-ui-rest-mode="still"]:hover .soft-footband-minimal,
body[data-ui-rest-mode="still"]:hover .mobile-route-overlay-panel,
body[data-ui-rest-mode="still"]:focus-within .floating-horizon-header,
body[data-ui-rest-mode="still"]:focus-within .site-main-grow,
body[data-ui-rest-mode="still"]:focus-within .soft-footband-minimal,
body[data-ui-rest-mode="still"]:focus-within .mobile-route-overlay-panel {
  opacity: 1;
}

.visually-masked-slot {
  position: absolute;
  width: 0.065rem;
  height: 0.065rem;
  padding: 0;
  margin: -0.065rem;
  overflow: hidden;
  clip-path: inset(50%);
}

a {
  color: var(--twilight-ink-soft);
  text-decoration-thickness: 0.065rem;
  text-underline-offset: 0.2rem;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--amber-glint-warm);
}

.skip-to-core-link:focus {
  clip-path: unset;
  width: auto;
  height: auto;
  padding: var(--space-sm) var(--space-md);
  background: var(--mist-white-glass);
  z-index: 9999;
}

p {
  margin: 0 0 var(--space-md);
}

h1,
h2,
h3 {
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--twilight-ink-soft);
}

h1 {
  font-size: clamp(2rem, 4.8vw, 2.95rem);
  line-height: 1.22;
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
}

h3 {
  font-size: clamp(1.15rem, 2.35vw, 1.42rem);
}

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

/* ------- layout shells ------- */

.woven-page-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.floating-horizon-header {
  position: relative;
  z-index: 20;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(
    180deg,
    rgba(230, 223, 211, 0.78) 0%,
    rgba(230, 223, 211, 0.15) 100%
  );
  backdrop-filter: blur(0.55rem);
  border-bottom: 0.065rem solid rgba(74, 90, 119, 0.08);
}

.header-horizon-row {
  max-width: 68rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: nowrap;
}

.site-text-mark-anchor {
  font-family: var(--font-secondary);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 500;
  text-decoration: none;
  color: var(--twilight-ink-soft);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-fluid-a);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0.35rem 1.2rem var(--panel-shadow-soft);
  animation: idle-blob-drift var(--transition-slow-breathe);
}

.site-text-mark-anchor:hover,
.site-text-mark-anchor:focus-visible {
  color: var(--amber-glint-warm);
}

@keyframes idle-blob-drift {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.012);
  }
}

.route-nav-cluster-horizontal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.route-nav-cluster-horizontal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  justify-content: flex-end;
}

.route-nav-cluster-horizontal a {
  text-decoration: none;
  font-size: 0.95rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-fluid-b);
  background: rgba(255, 255, 255, 0.15);
}

.route-nav-cluster-horizontal a:hover,
.route-nav-cluster-horizontal a:focus-visible {
  background: rgba(212, 163, 115, 0.18);
}

.burger-end-anchor-control {
  order: 99;
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0.065rem solid rgba(74, 90, 119, 0.18);
  border-radius: 42% 58% 49% 51% / 52% 48% 52% 48%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: idle-blob-drift 7.5s ease-in-out infinite;
}

.burger-end-anchor-control:hover,
.burger-end-anchor-control:focus-visible {
  transform: translateY(-0.1rem);
  box-shadow: var(--focus-ring-strong);
}

.burger-end-anchor-control span {
  display: block;
  width: 1.15rem;
  height: 0.12rem;
  background: var(--twilight-ink-soft);
  border-radius: 0.5rem;
  margin: 0.18rem 0;
  transition: transform var(--transition-fast);
}

.burger-end-anchor-control[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.3rem) rotate(45deg);
}

.burger-end-anchor-control[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger-end-anchor-control[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.3rem) rotate(-45deg);
}

@media (max-width: 1023px) {
  .burger-end-anchor-control {
    display: flex;
    flex-direction: column;
  }

  .route-nav-cluster-horizontal.desktop-only-path {
    display: none;
  }
}

@media (min-width: 1024px) {
  .burger-end-anchor-control {
    position: absolute;
    width: 0.065rem;
    height: 0.065rem;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip-path: inset(50%);
    border: none;
    pointer-events: none;
  }

  .route-nav-cluster-horizontal.desktop-only-path {
    display: flex;
  }
}

.mobile-route-overlay-panel {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: none;
  background: radial-gradient(
      ellipse at 65% 0%,
      rgba(212, 163, 115, 0.12),
      transparent 62%
    ),
    rgba(74, 90, 119, 0.22);
  backdrop-filter: blur(0.4rem);
}

.mobile-route-overlay-panel[data-open-state="yes"] {
  display: flex;
}

.mobile-route-sheet-inner {
  margin: auto auto 8vh;
  padding: var(--space-xl) var(--space-lg);
  width: min(92vw, 24rem);
  border-radius: 38% 62% 70% 30% / 45% 45% 55% 55%;
  background: rgba(230, 223, 211, 0.88);
  box-shadow: 0 2rem 3.5rem rgba(45, 55, 70, 0.25);
}

.mobile-route-sheet-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.mobile-route-sheet-inner a {
  text-decoration: none;
  font-size: 1.05rem;
  display: inline-block;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
}

.site-main-grow {
  flex: 1 0 auto;
  width: 100%;
}

.soft-footband-minimal {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-top: 0.065rem solid rgba(74, 90, 119, 0.1);
  background: rgba(230, 223, 211, 0.65);
}

.foot-inner-wrap {
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}

.foot-route-list-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.foot-route-list-row a {
  text-decoration: none;
  font-size: 0.88rem;
}

.foot-legal-only-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  border-top: 0.065rem dashed rgba(74, 90, 119, 0.15);
  padding-top: var(--space-md);
}

.foot-legal-only-row a {
  font-size: 0.82rem;
  text-decoration: none;
  opacity: 0.9;
}

.foot-micro-note {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.78;
}

/* ------- banners: full vw, photo under readable stack ------- */

.panorama-hero-wave {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: min(76vh, 38rem);
  display: grid;
  grid-template-rows: 1fr;
  isolation: isolate;
  overflow: hidden;
}

.panorama-readable-stack-layer {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.panorama-readable-inner {
  max-width: 46rem;
  margin: 0 auto 0 min(12%, 3rem);
}

.panorama-reading-glass-sheet {
  background: rgba(230, 223, 211, 0.58);
  border-radius: var(--radius-fluid-a);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 1.2rem 2.8rem rgba(45, 55, 70, 0.12);
  backdrop-filter: blur(0.62rem);
  border: 0.065rem solid rgba(255, 255, 255, 0.42);
}

.panorama-reading-glass-sheet p:last-child {
  margin-bottom: 0;
}

/* photo layer sits visually beneath stacked text sheet */
.panorama-photo-floor-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.panorama-photo-floor-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.92) brightness(1.06) blur(0.02rem)
    contrast(0.93);
}

.panorama-glow-mask-over-photo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background: radial-gradient(
    circle at 50% 18%,
    rgba(212, 163, 115, 0.25),
    transparent 55%
  );
}

.midstrip-banner-flat {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.midstrip-photo-core {
  position: relative;
  min-height: min(54vh, 28rem);
  display: grid;
  align-items: center;
}

.midstrip-reading-float {
  position: relative;
  z-index: 2;
  max-width: var(--line-width-reading);
  margin: 0 auto;
  padding: var(--space-lg);
}

.midstrip-reading-panel {
  background: rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-fluid-b);
  padding: clamp(1rem, 2.8vw, 1.85rem);
  backdrop-filter: blur(0.5rem);
  border: 0.065rem solid rgba(255, 255, 255, 0.52);
}

.midstrip-photo-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.midstrip-photo-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: saturate(0.88) brightness(1.03);
}

/* ------- section grids ------- */

.horizon-content-envelope {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-xl);
}

.section-label-hush {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: 999rem;
  background: rgba(74, 90, 119, 0.12);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

/* Mosaic image grids — non-hero sections */
.photo-mosaic-grid-root {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.6rem, 2vw, 1.35rem);
  margin-top: var(--space-lg);
  width: 100%;
}

.photo-mosaic-tile-card {
  margin: 0;
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 44% 56% 48% 52% / 42% 45% 55% 58%;
  box-shadow: 0 1rem 2.35rem rgba(45, 55, 70, 0.11),
    inset 0 0 0 0.065rem rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(0.42rem);
  animation: idle-blob-drift 11s ease-in-out infinite alternate;
}

.photo-mosaic-tile-card:nth-child(2n) {
  border-radius: 38% 62% 55% 45% / 48% 40% 60% 52%;
}

.photo-mosaic-visual-slot {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: clamp(10rem, 22vw, 15rem);
  border-radius: 55% 45% 50% 50% / 38% 44% 56% 62%;
}

.photo-mosaic-visual-slot.photo-mosaic-tall-vis {
  min-height: clamp(12.5rem, 28vw, 19rem);
}

.photo-mosaic-visual-slot.photo-mosaic-compact-vis {
  min-height: clamp(9.5rem, 18vw, 12rem);
}

.photo-mosaic-visual-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(1.04) contrast(0.94);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-mosaic-tile-card:hover .photo-mosaic-visual-slot img,
.photo-mosaic-tile-card:focus-within .photo-mosaic-visual-slot img {
  transform: scale(1.03);
}

.photo-mosaic-tile-caption {
  margin-top: var(--space-md);
  padding: 0 var(--space-sm) var(--space-sm);
}

.photo-mosaic-tile-caption h3 {
  margin: 0 0 var(--space-xs);
  font-size: 1rem;
}

.photo-mosaic-tile-caption p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.photo-mosaic-tile-caption .price-tag-soft {
  margin-top: var(--space-sm);
}

.photo-mosaic-w-12 {
  grid-column: span 12;
}

.photo-mosaic-w-8 {
  grid-column: span 8;
}

.photo-mosaic-w-7 {
  grid-column: span 7;
}

.photo-mosaic-w-6 {
  grid-column: span 6;
}

.photo-mosaic-w-5 {
  grid-column: span 5;
}

.photo-mosaic-w-4 {
  grid-column: span 4;
}

.photo-mosaic-w-3 {
  grid-column: span 3;
}

.photo-mosaic-grid-root.photo-mosaic-layout-products-grid .photo-mosaic-tile-card:nth-child(1) {
  grid-column: span 6;
}

.photo-mosaic-grid-root.photo-mosaic-layout-products-grid .photo-mosaic-tile-card:nth-child(2) {
  grid-column: span 6;
}

.photo-mosaic-grid-root.photo-mosaic-layout-products-grid .photo-mosaic-tile-card:nth-child(3) {
  grid-column: 3 / span 8;
  max-width: 100%;
}

@media (max-width: 1023px) {
  .photo-mosaic-w-12,
  .photo-mosaic-w-8,
  .photo-mosaic-w-7,
  .photo-mosaic-w-6,
  .photo-mosaic-w-5,
  .photo-mosaic-w-4,
  .photo-mosaic-w-3,
  .photo-mosaic-layout-products-grid .photo-mosaic-tile-card:nth-child(1),
  .photo-mosaic-layout-products-grid .photo-mosaic-tile-card:nth-child(2),
  .photo-mosaic-layout-products-grid .photo-mosaic-tile-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

.lateral-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.lateral-card-soft {
  border-radius: var(--radius-fluid-a);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 1rem 2rem rgba(45, 55, 70, 0.1);
}

.lateral-thumb-wrap {
  border-radius: 48% 52% 38% 62% / 46% 40% 60% 54%;
  overflow: hidden;
  margin-bottom: var(--space-md);
  max-height: 11rem;
}

.lateral-thumb-wrap img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.quote-drift-banner {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-radius: var(--radius-fluid-b);
  background: rgba(74, 90, 119, 0.08);
  font-style: italic;
  font-size: 0.98rem;
}

.plain-legal-bullet-flow {
  margin: var(--space-md) 0;
  padding-left: 1.4rem;
  max-width: var(--line-width-reading);
}

/* ------- utilities ------- */

.anchor-offset-buffer {
  scroll-margin-top: var(--space-xl);
}

.pill-quiet-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 999rem;
  border: 0.065rem solid rgba(74, 90, 119, 0.2);
  background: rgba(212, 163, 115, 0.18);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.pill-quiet-button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring-strong);
}

/* ------- contact ------- */

.contact-split-horizon {
  max-width: 68rem;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: var(--space-xl);
}

.form-glass-card {
  border-radius: var(--radius-fluid-a);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1.2rem 2.4rem var(--panel-shadow-soft);
}

.form-field-stack label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.form-field-stack input,
.form-field-stack textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  border: 0.065rem solid rgba(74, 90, 119, 0.16);
  background: rgba(230, 223, 211, 0.45);
  font-family: inherit;
  font-size: 0.95rem;
}

.consent-checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.82rem;
  margin-bottom: var(--space-md);
}

.consent-checkbox-line input {
  margin-top: 0.35rem;
}

.map-hug-frame iframe {
  width: 100%;
  border: 0;
  min-height: 16rem;
  border-radius: var(--radius-fluid-b);
  opacity: 0.96;
}

/* ------- products ------- */

.product-card-grid-equal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-card-shape {
  border-radius: var(--radius-fluid-a);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.48);
}

.product-photo-cap {
  height: 11rem;
  border-radius: 44% 56% 50% 50% / 40% 40% 60% 60%;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.product-photo-cap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-tag-soft {
  display: inline-block;
  margin-top: var(--space-md);
  font-weight: 500;
}

/* ------- decompress (breathing) ------- */

.fullscreen-breathe-stage {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: var(--space-xl) var(--space-lg);
  transition: background-color 14s linear;
}

.breathe-disk-core {
  width: clamp(13rem, 46vw, 22rem);
  height: clamp(13rem, 46vw, 22rem);
  border-radius: 50%;
  border: 0.065rem solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  text-align: center;
  backdrop-filter: blur(0.4rem);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 4rem rgba(212, 163, 115, 0.15),
    0 1.8rem 3rem rgba(45, 55, 70, 0.2);
}

.breathe-hint-micro {
  max-width: 14rem;
  font-size: 0.92rem;
  padding: var(--space-md);
}

/* ------- audio ------- */

.audio-tile-matrix {
  max-width: 68rem;
  margin: var(--space-lg) auto;
  padding: 0 var(--space-lg) var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: var(--space-md);
}

.audio-textured-cell {
  border-radius: 34% 66% 60% 40% / 40% 40% 60% 60%;
  padding: var(--space-lg) var(--space-md);
  min-height: 7.8rem;
  background: rgba(255, 255, 255, 0.4);
  display: grid;
  align-content: center;
  text-align: center;
  cursor: pointer;
}

.audio-textured-cell[data-active-tone="yes"] {
  border: 0.065rem solid rgba(212, 163, 115, 0.52);
}

.audio-controls-glass-strip {
  max-width: 38rem;
  margin: var(--space-lg) auto var(--space-xl);
  padding: var(--space-lg);
  border-radius: var(--radius-fluid-b);
  background: rgba(230, 223, 211, 0.65);
}

.audio-controls-glass-strip input[type="range"] {
  width: 100%;
}

/* ------- perspective journal ------- */

.journal-vanishing-stage {
  max-width: 44rem;
  margin: var(--space-xl) auto;
  padding: 0 var(--space-lg) var(--space-xl);
}

.journal-float-field {
  min-height: 12rem;
  border-radius: var(--radius-fluid-a);
  border: 0.065rem dashed rgba(74, 90, 119, 0.35);
  background: rgba(255, 255, 255, 0.4);
  padding: var(--space-md);
}

.journal-float-field textarea {
  width: 100%;
  min-height: 10rem;
  border: none;
  resize: vertical;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

.journal-button-row-quiet {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.particle-canvas-holder {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}

.particle-canvas-holder canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ------- privacy popup ------- */

.policy-popup-shade {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  display: none;
  padding: var(--space-md);
  background: transparent;
}

.policy-popup-shade[data-show-popup="yes"] {
  display: block;
}

.policy-popup-sheet {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1.75rem;
  padding: var(--space-md) var(--space-lg);
  background: rgba(230, 223, 211, 0.96);
  box-shadow: 0 -1.2rem 3rem rgba(45, 55, 70, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
}

@media (max-width: 1023px) {
  .policy-popup-sheet {
    grid-template-columns: 1fr;
  }
}

.policy-popup-sheet p {
  margin: 0;
  font-size: 0.88rem;
}

.policy-popup-buttons {
  display: flex;
  gap: var(--space-md);
}

/* ------- 404 ------- */

.hero-compact-wave {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

/* ------- reduced motion ------- */

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