/* Make all tables match the header translucency */
table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.95rem;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(0px) saturate(128%);
  -webkit-backdrop-filter: blur(0px) saturate(128%);
  color: var(--text);
  overflow: hidden;
}
th, td {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}
/* Make hero/placeholder images fill the entire card for app dev, websites, and architecture */
.card.appdev img,
.card.websites img,
.card.architecture img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  outline: none;
  border-radius: 0.9rem;
  background: transparent;
  box-shadow: none;
}
/* [1] Starts a CSS selector rule block. */
:root {
  /* [2] Sets one CSS property value. */
  --bg: #000000;
  /* [3] Sets one CSS property value. */
  --text: #f4f5f6;
  /* [4] Sets one CSS property value. */
  --muted: rgba(244, 245, 246, 0.72);
  /* [5] Sets one CSS property value. */
  --glass-top: rgba(255, 255, 255, 0.09);
  /* [6] Sets one CSS property value. */
  --glass-bottom: rgba(255, 255, 255, 0.03);
  /* [7] Sets one CSS property value. */
  --glass-border: rgba(255, 255, 255, 0.2);
  /* [7a] Sets one CSS property value. */
  --bg-fallback: #02040d;
  /* [8] Sets one CSS property value. */
  --gold: #e6edf5;
  /* [9] Sets one CSS property value. */
  --gold-strong: #ffffff;
  /* [10] Sets one CSS property value. */
  --silver: #d6dde4;
  /* [11] Sets one CSS property value. */
  --silver-strong: #f2f6fb;
  /* [11aa] Sets translucent ink for the floating ZMWN title text. */
  --header-title-ink: rgba(242, 246, 251, 0.85);
  /* [11ab] Sets translucent ink for the floating subtitle text. */
  --header-subtitle-ink: rgba(242, 246, 251, 0.72);
  /* [11a] Sets one CSS property value. */
  --panel-fill: rgba(255, 255, 255, 0.1);
  /* [11b] Sets one CSS property value. */
  --panel-border: rgba(255, 255, 255, 0.22);
  /* [11c] Sets one CSS property value. */
  --panel-blur: 0px;
  /* [11d] Sets the default desktop column count for carousel tiles. */
  --carousel-cols: 3;
  /* [11e] Sets fluid tile gap for smooth resizing between breakpoints. */
  --carousel-gap: clamp(0.4rem, 0.9vw, 0.78rem);
  /* [11f] Sets fluid carousel top/bottom padding. */
  --carousel-pad-block: clamp(0.5rem, 1vw, 0.85rem);
  /* [11g] Sets fluid carousel side padding while leaving room for rail controls. */
  --carousel-pad-inline: clamp(2.2rem, 3.8vw, 3.25rem);
  /* [12] Sets one CSS property value. */
  --carousel-height: clamp(280px, 44vh, 450px);
/* [13] Ends a CSS block scope. */
}

/* [14] Keeps an existing CSS comment line. */
*,
/* [15] Keeps an existing CSS comment line. */
*::before,
/* [16] Starts a CSS selector rule block. */
*::after {
  /* [17] Sets one CSS property value. */
  box-sizing: border-box;
/* [18] Ends a CSS block scope. */
}

/* [19] Keeps this CSS statement in place. */
html,
/* [20] Starts a CSS selector rule block. */
body {
  /* [21] Sets one CSS property value. */
  margin: 0;
  /* [22] Sets one CSS property value. */
  min-height: 100%;
/* [23] Ends a CSS block scope. */
}

/* [24] Starts a CSS selector rule block. */
body {
  /* [25] Sets one CSS property value. */
  font-family: "Manrope", sans-serif;
  /* [26] Sets one CSS property value. */
  background: transparent;
  /* [27] Sets one CSS property value. */
  color: var(--text);
  /* [28] Sets one CSS property value. */
  line-height: 1.5;
  /* [29] Sets one CSS property value. */
  overflow-x: hidden;
  /* [29a] Uses a vertical page flow so footer sits at the final row of the page. */
  display: flex;
  /* [29b] Stacks page sections top to bottom. */
  flex-direction: column;
  /* [29f] Sets one CSS property value. */
  min-height: 100svh;
  /* [29g] Sets one CSS property value. */
  position: relative;
/* [30] Ends a CSS block scope. */
}

/* [31] Starts a CSS selector rule block. */
.bg-layer {
  /* [32] Sets one CSS property value. */
  position: fixed;
  /* [33] Sets one CSS property value. */
  inset: 0;
  /* [34] Sets one CSS property value. */
  z-index: 0;
  /* [35] Sets one CSS property value. */
  background-color: var(--bg-fallback);
  /* [36] Keeps this CSS statement in place. */
  background-image:
    /* [37] Keeps this CSS statement in place. */
    linear-gradient(170deg, rgba(1, 5, 16, 0.38), rgba(1, 6, 20, 0.24)),
    /* [38] Keeps this CSS statement in place. */
    url("./assets/background/solar_system_with_a_lot_of_water_flowing_through_i_by_imzenmariyei_dlbnkke.jpg");
  /* [39] Sets one CSS property value. */
  background-size: cover, cover;
  /* [39a] Sets one CSS property value. */
  background-position: center center, center center;
  /* [39b] Sets one CSS property value. */
  background-repeat: no-repeat, no-repeat;
  /* [39c] Sets one CSS property value. */
  background-attachment: scroll, scroll;
  /* [39d] Sets one CSS property value. */
  pointer-events: none;
/* [40] Ends a CSS block scope. */
}

/* [40a] Keeps this CSS statement in place. */
header,
/* [40b] Keeps this CSS statement in place. */
main,
/* [40c] Starts a CSS selector rule block. */
.site-footer {
  /* [40d] Sets one CSS property value. */
  position: relative;
  /* [40e] Sets one CSS property value. */
  z-index: 1;
/* [40f] Ends a CSS block scope. */
}

/* [41] Keeps this CSS statement in place. */
.bg-layer::before,
.bg-layer::after {
  /* [43] Sets one CSS property value. */
  content: "";
  /* [44] Sets one CSS property value. */
  position: absolute;
  /* [45] Sets one CSS property value. */
  inset: 0;
/* [46] Ends a CSS block scope. */
}

/* [47] Starts a CSS selector rule block. */
.bg-layer::before {
  /* [48] Keeps this CSS statement in place. */
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.02), transparent 36%),
    /* [50] Keeps this CSS statement in place. */
    repeating-linear-gradient(
      /* [51] Keeps this CSS statement in place. */
      -58deg,
      /* [52] Keeps this CSS statement in place. */
      transparent 0 20px,
      /* [53] Keeps this CSS statement in place. */
      rgba(255, 255, 255, 0.01) 20px 21px
    /* [54] Keeps this CSS statement in place. */
    );
  /* [54a] Sets one CSS property value. */
  opacity: 0.28;
/* [55] Ends a CSS block scope. */
}

/* [56] Starts a CSS selector rule block. */
.bg-layer::after {
  /* [57] Keeps this CSS statement in place. */
  background:
    /* [58] Keeps this CSS statement in place. */
    radial-gradient(circle at 50% 12%, rgba(242, 246, 251, 0.08), transparent 50%);
  /* [59] Sets one CSS property value. */
  filter: blur(7px);
  /* [59a] Sets one CSS property value. */
  opacity: 0.36;
/* [60] Ends a CSS block scope. */
}

/* [61] Starts a CSS selector rule block. */
.shell {
  /* [62] Sets one CSS property value. */
  width: min(1160px, 92vw);
  /* [63] Sets one CSS property value. */
  margin-inline: auto;
/* [64] Ends a CSS block scope. */
}

/* [65] Starts a CSS selector rule block. */

.glass {
  background: var(--panel-fill);
  border: 1px solid var(--panel-border);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0px) saturate(128%);
  -webkit-backdrop-filter: blur(0px) saturate(128%);
}

.portfolio-block {
  background: var(--panel-fill);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(0px) saturate(128%);
  -webkit-backdrop-filter: blur(0px) saturate(128%);
  border-radius: 1.3rem;
  padding: 0 0 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* [73a] Starts a CSS selector rule block. */
.floating-brand {
  /* [73b] Places the floating heading block above the menu container. */
  margin-top: 0.62rem;
  /* [73ba] Ensures floating heading renders above the background layer. */
  position: relative;
  /* [73bb] Keeps heading and subtitle visible over all page visuals. */
  z-index: 1;
  /* [73c] Uses a centered stacked layout for heading and subtitle. */
  display: grid;
  /* [73d] Tightens spacing between header and subheader lines by half. */
  gap: 0.03rem;
  /* [73e] Centers both lines in the floating heading block. */
  justify-items: center;
  /* [73f] Keeps text centered for clean visual alignment. */
  text-align: center;
/* [73g] Ends a CSS block scope. */
}

/* [74] Starts a CSS selector rule block. */
.topbar {
  background: var(--panel-fill);
  margin-top: 2.28rem;
  margin-bottom: 20px;
  padding: 0.74rem 0.9rem 0.82rem;
  border-radius: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.32rem, 1.8vw, 0.58rem);
/* [82] Ends a CSS block scope. */
}

/* [82a] Starts a CSS selector rule block. */
header.topbar nav {
  /* [82b] Forces nav row to consume full header width so left/right anchoring can work. */
  width: 100%;
/* [82c] Ends a CSS block scope. */
}

/* [83] Starts a CSS selector rule block. */
.header-title {
  /* [84] Sets one CSS property value. */
  font-family: "Syncopate", sans-serif;
  /* [85] Sets one CSS property value. */
  text-decoration: none;
  /* [86] Sets one CSS property value. */
  color: var(--header-title-ink);
  /* [87] Tightens tracking proportionally so all letters stay inside the 600px cap. */
  letter-spacing: 0.11em;
  /* [88] Scales title size down proportionally to match the wider cap. */
  font-size: clamp(2.8rem, 9vw, 6rem);
  /* [88a0] Locks responsive title width to a 600px max to align with the underline line length. */
  width: clamp(260px, 52vw, 600px);
  /* [88a] Removes inherited tall line-box spacing so underline can sit closer to letters. */
  line-height: 0.92;
  /* [89] Sets one CSS property value. */
  text-shadow: 0 0 16px rgba(214, 221, 228, 0.22);
  /* [89a] Creates a positioning context for the animated underline. */
  position: relative;
  /* [89b] Keeps underline width bound to the title box and centers glyphs within that width. */
  display: inline-block;
  /* [89c] Keeps the ZMWN letters centered in the expanded title width box. */
  text-align: center;
  /* [89d] Prevents line wrapping from pushing the last character out of view. */
  white-space: nowrap;
  /* [89e] Ensures oversized glyph edges remain visible when scaling. */
  overflow: visible;
/* [90] Ends a CSS block scope. */
}

/* [90a] Starts a CSS selector rule block. */
.header-subtitle {
  /* [90b] Removes default paragraph spacing. */
  margin: 0;
  /* [90c] Uses muted silver for supporting role text. */
  color: var(--header-subtitle-ink);
  /* [90d] Matches compact uppercase system styling. */
  text-transform: uppercase;
  /* [90e] Adds letter tracking for professional subtitle rhythm. */
  letter-spacing: 0.14em;
  /* [90f] Doubles the floating subtitle size exactly per request. */
  font-size: clamp(1.24rem, 2.4vw, 1.64rem);
/* [90g] Ends a CSS block scope. */
}

/* [90ga] Starts a shared underline styling block for the two home controls only. */
.header-title::after,
.menu-home-link::after {
  /* [90gb] Creates the underline pseudo-element. */
  content: "";
  /* [90gc] Positions underline relative to each control label. */
  position: absolute;
  /* [90gd] Anchors the underline to the left edge. */
  left: 0;
  /* [90ge] Anchors the underline to the right edge. */
  right: 0;
  /* [90gf] Places the underline just below the text baseline. */
  bottom: -0.18rem;
  /* [90gg] Uses a thin line profile. */
  height: 2px;
  /* [90gh] Softens the underline ends. */
  border-radius: 999px;
  /* [90gi] Uses a bright silver gradient for stronger visibility. */
  background: linear-gradient(90deg, rgba(242, 246, 251, 1), rgba(214, 221, 228, 0.92));
  /* [90gj] Starts hidden so the line can sweep in. */
  transform: scaleX(0);
  /* [90gk] Forces sweep animation to run left to right. */
  transform-origin: left center;
  /* [90gl] Hides underline before interaction. */
  opacity: 0;
  /* [90gm] Adds strong neon-like glow for the requested pulse strength. */
  box-shadow: 0 0 0 rgba(242, 246, 251, 0), 0 0 0 rgba(214, 221, 228, 0);
  /* [90gn] Keeps pseudo-element from blocking click interactions. */
  pointer-events: none;
/* [90go] Ends this CSS block. */
}

/* [90goa] Starts a CSS selector rule block. */
.header-title::after {
  /* [90gob] Pulls the animated underline much closer to the ZMWN header text baseline. */
  bottom: -0.01rem;
/* [90goc] Ends this CSS block. */
}

/* [90gp] Starts shared trigger block for hover/focus/active underline animation. */
.header-title:hover::after,
.header-title:focus-visible::after,
.header-title:active::after,
.menu-home-link:hover::after,
.menu-home-link:focus-visible::after,
.menu-home-link:active::after {
  /* [90gq] Shows underline during interaction states. */
  opacity: 1;
  /* [90gr] Sweeps underline in from left to right while pulsing glow. */
  animation: home-link-underline-sweep 320ms cubic-bezier(0.2, 0.82, 0.24, 1) forwards, home-link-underline-pulse 720ms ease-out;
/* [90gs] Ends this CSS block. */
}

/* [90gsa] Auto-engage and keep the underline on the ZMWN home page only. */
body[data-page="home"] .header-title::after,
body[data-page="home"] .menu-home-link::after {
  /* [90gsb] Makes the underline visible immediately. */
  opacity: 1;
  /* [90gsc] Runs the same sweep+pulse once, then keeps the final state. */
  animation: home-link-underline-sweep 320ms cubic-bezier(0.2, 0.82, 0.24, 1) forwards, home-link-underline-pulse 720ms ease-out;
/* [90gsd] Ends this CSS block. */
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .header-title::after,
  body[data-page="home"] .menu-home-link::after {
    animation: none;
    opacity: 1;
    transform: scaleX(1);
  }
}

/* [90gt] Starts keyframes for left-to-right underline sweep. */
@keyframes home-link-underline-sweep {
  /* [90gu] Starts hidden line state. */
  0% {
    /* [90gv] Keeps initial underline hidden and collapsed. */
    transform: scaleX(0);
    /* [90gw] Keeps initial underline transparent. */
    opacity: 0;
  /* [90gx] Ends keyframe block. */
  }
  /* [90gy] Keeps line visible at full width after sweep completes. */
  100% {
    /* [90gz] Finishes at full underline width. */
    transform: scaleX(1);
    /* [90haa] Keeps underline visible at rest state of the interaction. */
    opacity: 1;
  /* [90hab] Ends keyframe block. */
  }
/* [90hac] Ends keyframes block. */
}

/* [90had] Starts keyframes for stronger glow pulse on interaction. */
@keyframes home-link-underline-pulse {
  /* [90hae] Starts with subtle glow. */
  0% {
    /* [90haf] Uses low initial glow intensity. */
    box-shadow: 0 0 6px rgba(242, 246, 251, 0.25), 0 0 10px rgba(214, 221, 228, 0.18);
  /* [90hag] Ends keyframe block. */
  }
  /* [90hah] Peaks glow intensity mid animation. */
  50% {
    /* [90hai] Uses stronger white bloom for prominence. */
    box-shadow: 0 0 16px rgba(242, 246, 251, 0.75), 0 0 28px rgba(214, 221, 228, 0.55);
  /* [90haj] Ends keyframe block. */
  }
  /* [90hak] Settles to a clear but softer glow. */
  100% {
    /* [90hal] Keeps visible glow after the pulse. */
    box-shadow: 0 0 10px rgba(242, 246, 251, 0.5), 0 0 18px rgba(214, 221, 228, 0.35);
  /* [90ham] Ends keyframe block. */
  }
/* [90han] Ends keyframes block. */
}

/* [91] Starts a CSS selector rule block. */
.menu {
  --menu-group-gap: clamp(0.6rem, 3vw, 1rem);
  /* [92] Sets one CSS property value. */
  list-style: none;
  /* [93] Sets one CSS property value. */
  margin: 0;
  /* [94] Sets one CSS property value. */
  padding: 0;
  /* [95] Sets one CSS property value. */
  display: flex;
  /* [96] Sets one CSS property value. */
  gap: clamp(0.25rem, 1.6vw, 0.5rem);
  /* [97] Keeps all items on one line; sizing will shrink instead of wrapping. */
  flex-wrap: nowrap;
  /* [97a] Uses full nav width so the brand can pin left while links stay right. */
  width: 100%;
  /* [98] Right-aligns all menu items within the nav row. */
  justify-content: flex-end;
/* [99] Ends a CSS block scope. */
}

/* Let nav items actually shrink (prevents left-side clipping when the row is tight). */
.menu > li {
  min-width: 0;
}

/* [99aa] Starts a CSS selector rule block. */
.menu > li:first-child {
  /* [99ab] Makes only the first menu item push all other items to the right group. */
  margin-right: auto;
  /* Keeps the left home button and the right menu items from touching even when the row overflows. */
  padding-right: var(--menu-group-gap);
/* [99ac] Ends this CSS block. */
}

/* [99a] Starts a CSS selector rule block. */
.menu-home-link {
  /* [99b] Uses no pill border for the floating home link. */
  border: 0;
  /* [99c] Uses no background fill for the floating home link. */
  background: transparent;
  /* [99d] Uses silver text for consistency with nav links. */
  color: var(--silver);
  /* [99da] Allows link to shrink when menu space is constrained. */
  flex-shrink: 1;
  /* [99db] Sets minimum width to prevent content overflow. */
  min-width: 0;
  /* [99e] Uses compact horizontal spacing. */
  padding: 0 clamp(0.16rem, 1.2vw, 0.35rem);
  /* [99f] Matches nav item height for alignment. */
  height: clamp(1.9rem, 5vw, 2.2rem);
  /* [99g] Uses mono typography only for the left brand menu item. */
  font-family: "IBM Plex Mono", monospace;
  /* [99g1] Uses IBM extra-light weight for the requested menu brand treatment. */
  font-weight: 200;
  /* [99g2] Applies italic style per requested brand treatment. */
  font-style: italic;
  /* [99h] Preserves the exact mixed-case brand text. */
  text-transform: none;
  /* [99i] Uses lighter tracking so mixed case reads naturally. */
  letter-spacing: clamp(0.01em, 0.9vw, 0.02em);
  /* [99j] Removes default underline styling. */
  text-decoration: none;
  /* Keeps the label from wrapping/stacking when the nav row squeezes. */
  white-space: nowrap;
  /* [99k] Aligns label content in the nav row. */
  display: inline-flex;
  /* [99l] Centers text vertically. */
  align-items: center;
  /* [99m] Left-aligns text inside the brand menu item. */
  justify-content: flex-start;
  /* [99ma] Creates a positioning context for the animated underline. */
  position: relative;
  /* [99mb] Keeps underline visible beyond text bounds without clipping. */
  overflow: visible;
  /* [99mc] Keeps home link as plain text without extra surface compositing. */
  isolation: auto;
  /* [99md] Keeps baseline transform neutral for text-only interaction. */
  transform: none;
  /* [99n] Uses pointer cursor for interaction feedback. */
  cursor: pointer;
  /* [99o] Applies lightweight text-only transitions. */
  transition:
    color var(--menu-zoom-duration, 180ms) ease,
    text-shadow var(--menu-zoom-duration, 180ms) ease;
/* [99p] Ends this CSS block. */
}

/* [99q] Starts a CSS selector rule block. */
.menu-home-link:hover,
/* [99r] Starts a CSS selector rule block. */
.menu-home-link:focus-visible {
  /* [99s] Brightens link color on interaction. */
  color: var(--silver-strong);
  /* [99t] Uses light text glow while keeping no boxed surface. */
  text-shadow: 0 0 14px rgba(214, 221, 228, 0.35);
  /* [99u1] Keeps text-only behavior with no zoom box effect. */
  transform: none;
  /* [99u2] Keeps box visuals disabled for the home menu text. */
  box-shadow: none;
/* [99u] Ends this CSS block. */
}

/* [100] Starts a CSS selector rule block. */
.menu-link {
  /* [100a] Allows link to shrink when menu space is constrained. */
  flex-shrink: 1;
  /* [100b] Sets minimum width to prevent content overflow. */
  min-width: 0;
  /* [101] Sets one CSS property value. */
  border: 1px solid rgba(255, 255, 255, 0.18);
  /* [102] Sets one CSS property value. */
  background: rgba(9, 9, 9, 0.1);
  /* [103] Sets one CSS property value. */
  color: var(--silver);
  /* [104] Sets one CSS property value. */
  border-radius: 0.56rem;
  /* [105] Sets one CSS property value. */
  height: clamp(1.9rem, 5.5vw, 2.2rem);
  /* [106] Sets one CSS property value. */
  padding: 0 clamp(0.55rem, 3.5vw, 1rem);
  /* [107] Sets one CSS property value. */
  font: inherit;
  /* [108] Sets one CSS property value. */
  font-size: clamp(0.78rem, 2.4vw, 0.95rem);
  /* [109] Sets one CSS property value. */
  letter-spacing: clamp(0.04em, 1.6vw, 0.07em);
  /* [110] Sets one CSS property value. */
  text-transform: uppercase;
  /* [110a] Sets one CSS property value. */
  text-decoration: none;
  /* Keeps menu text on one line (prevents "App / Dev" stacking). */
  white-space: nowrap;
  /* [110b] Sets one CSS property value. */
  display: inline-flex;
  /* [110c] Sets one CSS property value. */
  align-items: center;
  /* [110d] Sets one CSS property value. */
  justify-content: center;
  /* [110e] Prevents regular menu pills from becoming left-separated. */
  margin-right: 0;
  /* [110f] Prevents regular menu pills from becoming left-separated. */
  margin-left: 0;
  /* [111] Sets one CSS property value. */
  cursor: pointer;
  /* [112] Sets one CSS property value. */
  transition: all 170ms ease;
  /* [113] Sets one CSS property value. */
  position: relative;
  /* [113a] Clips shine animation to button bounds. */
  overflow: hidden;
  /* [113b] Isolates glow and shine compositing. */
  isolation: isolate;
  /* [113c] Establishes transform baseline for zoom animation. */
  transform: translateZ(0) scale(1);
  /* [113d] Narrows transition scope to animated properties. */
  transition:
    color var(--menu-zoom-duration, 180ms) ease,
    border-color var(--menu-zoom-duration, 180ms) ease,
    box-shadow var(--menu-zoom-duration, 180ms) ease,
    transform var(--menu-zoom-duration, 180ms) ease;
/* [114] Ends a CSS block scope. */
}

/* [114a] Starts shine pseudo-element rule for menu category controls. */
.menu-link::before {
  /* [114b] Creates shine pseudo-element. */
  content: "";
  /* [114c] Positions shine inside each menu control. */
  position: absolute;
  /* [114d] Expands shine footprint for clean sweep. */
  inset: -18% -35%;
  /* [114e] Draws a narrow diagonal shine band. */
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 64%);
  /* [114f] Starts shine outside the left edge. */
  transform: translateX(-145%);
  /* [114g] Starts hidden before interaction. */
  opacity: 0;
  /* [114h] Keeps pseudo-element non-interactive. */
  pointer-events: none;
/* [114i] Ends this CSS block. */
}

/* [115] Keeps this CSS statement in place. */
.menu-link:hover,
/* [116] Starts a CSS selector rule block. */
.menu-link:focus-visible {
  /* [117] Sets one CSS property value. */
  border-color: rgba(214, 221, 228, 0.56);
  /* [118] Sets one CSS property value. */
  color: var(--silver-strong);
  /* [118a] Applies subtle zoom for better affordance. */
  transform: translateZ(0) scale(var(--menu-zoom-scale, 1.035));
  /* [118b] Adds crisp glow around hovered/focused menu item. */
  box-shadow: 0 0 12px var(--menu-glow, rgba(242, 246, 251, 0.24));
/* [119] Ends a CSS block scope. */
}

/* [119a] Starts shine trigger rule for menu category controls. */
.menu-link:hover::before,
.menu-link:focus-visible::before,
.menu-link:active::before {
  /* [119b] Reveals shine during interaction. */
  opacity: 1;
  /* [119c] Sweeps shine left to right. */
  animation: menu-shine-sweep var(--menu-shine-duration, 380ms) var(--menu-shine-ease, cubic-bezier(0.22, 0.78, 0.2, 1)) forwards;
/* [119d] Ends this CSS block. */
}

/* [120] Starts a CSS selector rule block. */
.menu-link.is-active {
  /* [121] Sets one CSS property value. */
  color: var(--silver-strong);
  /* [122] Sets one CSS property value. */
  border-color: rgba(242, 246, 251, 0.55);
  /* [123] Sets one CSS property value. */
  box-shadow: 0 0 16px rgba(214, 221, 228, 0.25);
  /* [123a] Sets one CSS property value. */
  border-radius: 999px;
/* [124] Ends a CSS block scope. */
}

/* [125] Keeps an existing CSS comment line. */
/* Rotated four-sided polygon marker for selected menu state */
/* [126] Starts a CSS selector rule block. */
.menu-link.is-active::after {
  /* [127] Sets one CSS property value. */
  content: "";
  /* [128] Sets one CSS property value. */
  position: absolute;
  /* [129] Sets one CSS property value. */
  right: -0.18rem;
  /* [130] Sets one CSS property value. */
  top: -0.3rem;
  /* [131] Sets one CSS property value. */
  width: 0.52rem;
  /* [132] Sets one CSS property value. */
  height: 0.52rem;
  /* [133] Sets one CSS property value. */
  border: 1px solid rgba(242, 246, 251, 0.65);
  /* [134] Sets one CSS property value. */
  background: rgba(242, 246, 251, 0.32);
  /* [135] Sets one CSS property value. */
  transform: rotate(45deg);
/* [136] Ends a CSS block scope. */
}

/* [136a] Starts keyframes for menu shine sweep animation. */
@keyframes menu-shine-sweep {
  /* [136b] Starts from fully off-screen left. */
  from {
    /* [136c] Keeps shine outside the control at animation start. */
    transform: translateX(-145%);
    /* [136d] Starts shine visible for smooth entry. */
    opacity: 0.14;
  /* [136e] Ends keyframe block. */
  }
  /* [136f] Ends with shine fully off-screen right. */
  to {
    /* [136g] Moves shine beyond right edge to complete sweep. */
    transform: translateX(145%);
    /* [136h] Fades shine out at sweep end. */
    opacity: 0;
  /* [136i] Ends keyframe block. */
  }
/* [136j] Ends keyframes block. */
}

/* [137] Starts a CSS selector rule block. */
main {
  /* [138] Sets one CSS property value. */
  padding: 0.95rem 0 1rem;
  /* [138b] Prevents content overflow from pushing footer into overlap states. */
  min-height: 0;
  /* [138c] Expands content area so footer is pushed to the page bottom when content is short. */
  flex: 1 0 auto;
/* [139] Ends a CSS block scope. */
}

/* [139a] Removes top padding on shell-based main containers. */
main.shell {
  /* [139b] Keeps shell mains flush with the top edge. */
  padding-top: 0;
/* [139c] Ends a CSS block scope. */
}

/* [140] Starts a CSS selector rule block. */
.hero {
  background: var(--panel-fill);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(0px) saturate(128%);
  -webkit-backdrop-filter: blur(0px) saturate(128%);
  /* [141] Sets one CSS property value. */
  border-radius: 1.3rem;
  /* [142] Removes inner side inset so hero frame width matches viewport pages. */
  padding: 0;
/* [143] Ends a CSS block scope. */
}

/* [144] Starts a CSS selector rule block. */
.hero-head {
  /* [145] Sets one CSS property value. */
  display: flex;
  /* [146] Sets one CSS property value. */
  align-items: end;
  /* [147] Sets one CSS property value. */
  justify-content: space-between;
  /* [148] Sets one CSS property value. */
  gap: 1rem;
  /* [148a] Keeps heading text inset without shrinking the carousel frame width. */
  padding: clamp(0.72rem, 1.4vw, 1rem) clamp(0.72rem, 1.4vw, 1rem) 0;
  /* [149] Sets one CSS property value. */
  margin-bottom: 0.55rem;
/* [150] Ends a CSS block scope. */
}

/* [151] Starts a CSS selector rule block. */
.label {
  /* [152] Sets one CSS property value. */
  margin: 0;
  /* [153] Sets one CSS property value. */
  text-transform: uppercase;
  /* [154] Sets one CSS property value. */
  letter-spacing: 0.14em;
  /* [155] Sets one CSS property value. */
  font-size: 0.73rem;
  /* [156] Sets one CSS property value. */
  color: var(--muted);
/* [157] Ends a CSS block scope. */
}

/* [158] Starts a CSS selector rule block. */
h1 {
  /* [159] Sets one CSS property value. */
  margin: 0;
  /* [160] Sets one CSS property value. */
  font-family: "Syncopate", sans-serif;
  /* [161] Sets one CSS property value. */
  font-size: clamp(1.08rem, 2.2vw, 1.8rem);
  /* [162] Sets one CSS property value. */
  font-weight: 700;
  /* [163] Sets one CSS property value. */
  color: var(--silver-strong);
/* [164] Ends a CSS block scope. */
}

/* [165] Starts a CSS selector rule block. */
.slider-frame {
  /* [166] Uses a positioned container so controls can be built into the viewport. */
  position: relative;
  /* [167] Uses block layout for integrated overlay controls. */
  display: block;
  /* [167a] Gives the carousel container a fixed visual height for full-height controls. */
  min-height: var(--carousel-height);
  /* [167b] Applies frame rounding so controls and media share one container edge. */
  border-radius: 1rem;
  /* [167c] Clips rail controls and media to the same outer frame. */
  overflow: hidden;
  /* [167d] Keeps frame border on the outer container so rails span full height cleanly. */
  border: 1px solid rgba(255, 255, 255, 0.22);
  /* [167e] Matches existing glass highlight in the outer frame. */
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  /* [167f] Preserves existing glow/shadow on the outer frame. */
  box-shadow:
    inset 0 0 0 1px rgba(242, 246, 251, 0.18),
    0 0 32px rgba(214, 221, 228, 0.1),
    0 0 55px rgba(214, 221, 228, 0.1);
/* [171] Ends a CSS block scope. */
}

/* [194] Starts a CSS selector rule block. */
.carousel-viewport {
  /* [196] Sets one CSS property value. */
  position: relative;
  /* [196a] Uses a definite viewport height so slides always have render area. */
  height: var(--carousel-height);
  /* [197] Sets one CSS property value. */
  min-height: var(--carousel-height);
  /* [198] Moves frame border to parent container. */
  border: 0;
  /* [199] Moves frame rounding to parent container. */
  border-radius: 0;
  /* [200] Sets one CSS property value. */
  overflow: hidden;
  /* [201] Keeps viewport fill transparent so outer frame carries visual chrome. */
  background: transparent;
  /* [202] Removes duplicate inner framing shadow. */
  box-shadow: none;
/* [206] Ends a CSS block scope. */
}

/* [207] Starts a CSS selector rule block. */
.carousel-track {
  /* [208] Anchors the track to the full viewport bounds. */
  position: absolute;
  /* [209] Stretches the track to fill the viewport from every side. */
  inset: 0;
/* [211] Ends a CSS block scope. */
}

/* [212] Starts a CSS selector rule block. */
.carousel-slide {
  /* [213] Sets one CSS property value. */
  position: absolute;
  /* [214] Sets one CSS property value. */
  inset: 0;
  /* [215] Sets one CSS property value. */
  opacity: 0;
  /* [216] Sets one CSS property value. */
  transform: scale(1.02);
  /* [217] Keeps this CSS statement in place. */
  transition:
    /* [218] Keeps this CSS statement in place. */
    opacity 220ms ease,
    /* [219] Keeps this CSS statement in place. */
    transform 240ms ease;
/* [220] Ends a CSS block scope. */
}

/* [221] Starts a CSS selector rule block. */
.carousel-slide.is-active {
  /* [222] Sets one CSS property value. */
  opacity: 1;
  /* [223] Sets one CSS property value. */
  transform: scale(1);
/* [224] Ends a CSS block scope. */
}

/* [224a] Starts a CSS selector rule block. */
.carousel-grid {
  /* [224b] Uses grid layout for paged image tiles in each hero slide. */
  display: grid;
  /* [224c] Uses responsive columns controlled by shared CSS variable. */
  grid-template-columns: repeat(var(--carousel-cols), minmax(0, 1fr));
  /* [224d] Uses equal-height rows to keep tile sizes stable while resizing. */
  grid-auto-rows: minmax(0, 1fr);
  /* [224e] Sets fluid spacing between tiles for smoother transitions. */
  gap: var(--carousel-gap);
  /* [224f] Makes grid fill the full slide viewport. */
  width: 100%;
  /* [224g] Makes grid fill the full slide viewport. */
  height: 100%;
  /* [224h] Applies fluid inset so content stays clear of side rails. */
  padding: var(--carousel-pad-block) var(--carousel-pad-inline);
  /* [224i] Allows grid to shrink without overflow artifacts. */
  min-width: 0;
  /* [224j] Allows grid to shrink without overflow artifacts. */
  min-height: 0;
/* [224k] Ends a CSS block scope. */
}

/* [224l] Starts a CSS selector rule block. */
.carousel-tile {
  /* [224m] Centers each media item inside its tile area. */
  display: flex;
  /* [224n] Centers each media item inside its tile area. */
  align-items: center;
  /* [224o] Centers each media item inside its tile area. */
  justify-content: center;
  /* [224p] Keeps tile footprint stable while viewport changes. */
  min-width: 0;
  /* [224q] Keeps tile footprint stable while viewport changes. */
  min-height: 0;
  /* [224r] Clips image edges to tile bounds without showing box chrome. */
  overflow: hidden;
  /* [224s] Keeps tile corners subtle while avoiding visible container framing. */
  border-radius: 0.35rem;
  /* [224t] Keeps tile background visually transparent in the glass theme. */
  background: transparent;
/* [224u] Ends a CSS block scope. */
}

/* [224v] Starts a CSS selector rule block. */
.carousel-image {
  /* [226] Sets one CSS property value. */
  width: 100%;
  /* [227] Sets one CSS property value. */
  height: 100%;
  /* [228] Keeps full project image visible inside each tile. */
  object-fit: contain;
  /* [228a] Sets one CSS property value. */
  object-position: center;
  /* [229] Sets one CSS property value. */
  display: block;
  /* [230] Keeps image background transparent so container framing is not visible. */
  background: transparent;
/* [234] Ends a CSS block scope. */
}

/* [234a] Starts a CSS selector rule block. */
.carousel-slide .is-broken {
  /* [234b] Uses a subtle translucent fallback surface for failed images. */
  background: rgba(255, 255, 255, 0.05);
  /* [234c] Adds a light dashed border to indicate missing media without heavy boxes. */
  border: 1px dashed rgba(255, 255, 255, 0.2);
/* [234d] Ends a CSS block scope. */
}

/* [234e] Starts a CSS selector rule block. */
.carousel-empty-message {
  /* [234f] Centers fallback copy inside the hero viewport. */
  display: grid;
  /* [234g] Centers fallback copy inside the hero viewport. */
  place-items: center;
  /* [234h] Uses full slide area. */
  width: 100%;
  /* [234i] Uses full slide area. */
  height: 100%;
  /* [234j] Uses silver text for readability. */
  color: var(--silver);
  /* [234k] Uses subtle spacing for fallback copy. */
  letter-spacing: 0.03em;
  /* [234l] Keeps fallback background lightweight and translucent. */
  background: rgba(255, 255, 255, 0.04);
/* [234m] Ends a CSS block scope. */
}

/* [235] Starts a CSS selector rule block. */
.carousel-meta {
  /* [236] Sets one CSS property value. */
  margin-top: 0.52rem;
  /* [236a] Matches heading inset while preserving full-width hero frame. */
  padding: 0 clamp(0.72rem, 1.4vw, 1rem) clamp(0.72rem, 1.4vw, 1rem);
  /* [237] Sets one CSS property value. */
  display: flex;
  /* [238] Keeps meta row on one line above mobile; it will wrap only at <= 430px. */
  flex-wrap: nowrap;
  /* [239] Sets one CSS property value. */
  justify-content: space-between;
  /* [240] Sets one CSS property value. */
  gap: clamp(0.35rem, 1.2vw, 0.65rem);
  /* [240a] Allows caption to shrink without forcing early wrapping. */
  min-width: 0;
/* [241] Ends a CSS block scope. */
}

/* [242] Starts a CSS selector rule block. */
.carousel-caption {
  /* [243] Sets one CSS property value. */
  margin: 0;
  /* [244] Sets one CSS property value. */
  color: var(--silver-strong);
  /* [245] Sets one CSS property value. */
  font-weight: 600;
  /* [246] Sets one CSS property value. */
  letter-spacing: 0.02em;
  /* [246a] Keeps the row squeeze-first until mobile. */
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
/* [247] Ends a CSS block scope. */
}

/* [248] Starts a CSS selector rule block. */
.carousel-rank {
  /* [249] Sets one CSS property value. */
  margin: 0;
  /* [250] Sets one CSS property value. */
  color: var(--gold);
  /* [251] Sets one CSS property value. */
  font-size: 0.88rem;
  /* [252] Sets one CSS property value. */
  letter-spacing: 0.04em;
  /* [253] Sets one CSS property value. */
  text-transform: uppercase;
  /* [253a] Keeps rank readable and prevents wrapping. */
  flex: 0 0 auto;
  white-space: nowrap;
/* [254] Ends a CSS block scope. */
}

/* [255] Starts a CSS selector rule block. */
.slider-dots {
  /* [256] Sets one CSS property value. */
  margin-top: 0.48rem;
  /* [257] Sets one CSS property value. */
  display: none;
  /* [258] Sets one CSS property value. */
  justify-content: center;
  /* [259] Sets one CSS property value. */
  gap: 0.45rem;
/* [260] Ends a CSS block scope. */
}

/* [261] Starts a CSS selector rule block. */
.dot {
  /* [262] Sets one CSS property value. */
  width: 0.58rem;
  /* [263] Sets one CSS property value. */
  height: 0.58rem;
  /* [264] Sets one CSS property value. */
  border-radius: 50%;
  /* [265] Sets one CSS property value. */
  border: 1px solid rgba(255, 255, 255, 0.45);
  /* [266] Sets one CSS property value. */
  background: rgba(255, 255, 255, 0.2);
  /* [267] Sets one CSS property value. */
  cursor: pointer;
  /* [268] Sets one CSS property value. */
  transition: all 160ms ease;
/* [269] Ends a CSS block scope. */
}

/* [270] Starts a CSS selector rule block. */
.dot.is-active {
  /* [271] Sets one CSS property value. */
  background: var(--gold);
  /* [272] Sets one CSS property value. */
  border-color: var(--gold-strong);
  /* [273] Sets one CSS property value. */
  box-shadow: 0 0 10px rgba(242, 246, 251, 0.42);
/* [274] Ends a CSS block scope. */
}

/* [275] Starts a CSS selector rule block. */
.dot.is-broken {
  /* [276] Sets one CSS property value. */
  opacity: 0.35;
/* [277] Ends a CSS block scope. */
}

/* [278] Starts a CSS selector rule block. */
.cards {
  /* [279] Sets one CSS property value. */
  margin-top: 0.72rem;
  /* [280] Sets one CSS property value. */
  display: grid;
  /* [281] Sets one CSS property value. */
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  /* [282] Sets one CSS property value. */
  gap: clamp(0.5rem, 2.4vw, 0.82rem);
/* [283] Ends a CSS block scope. */
}

/* [284] Starts a CSS selector rule block. */
.card {
  background: var(--panel-fill);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(0px) saturate(128%);
  -webkit-backdrop-filter: blur(0px) saturate(128%);
  /* [285] Sets one CSS property value. */
  border-radius: 1rem;
  /* [286] Sets one CSS property value. */
  padding: 0.76rem 0.82rem;
  /* [287] Sets one CSS property value. */
  min-height: 112px;
/* [288] Ends a CSS block scope. */
}

/* [288a] Starts a CSS selector rule block. */
.card-link {
  /* [288b] Sets one CSS property value. */
  text-decoration: none;
  /* [288c] Sets one CSS property value. */
  color: inherit;
  /* [288d] Uses flex layout so card content centers cleanly. */
  display: flex;
  /* [288da] Stacks icon and text vertically. */
  flex-direction: column;
  /* [288db] Centers icon and text horizontally. */
  align-items: center;
  /* [288dc] Centers icon/text block vertically inside each card. */
  justify-content: center;
  /* [288dd] Adds spacing between icon and label. */
  gap: 0.52rem;
  /* [288de] Centers all card text. */
  text-align: center;
/* [288e] Ends a CSS block scope. */
}

/* [288ea] Starts a CSS selector rule block. */
.card-icon {
  /* [288ea1] Places icon after the heading in the flex order. */
  order: 2;
  /* [288ea2] Centers icon holder alignment. */
  display: inline-flex;
  /* [288ea3] Centers icon holder alignment. */
  align-items: center;
  /* [288ea4] Centers icon holder alignment. */
  justify-content: center;
  /* [288eb] Sets icon box size. */
  width: 1.95rem;
  /* [288ec] Sets icon box size. */
  height: 1.95rem;
  /* [288ed] Uses bright white outline color for placeholder icons. */
  color: #ffffff;
  /* [288ed1] Matches FFR card icon ring style. */
  border: 1px solid rgba(255, 255, 255, 0.78);
  /* [288ed2] Rounds icon frame to a circle. */
  border-radius: 50%;
  /* [288ee] Keeps icons crisp with subtle separation from panel. */
  filter: drop-shadow(0 0 8px rgba(242, 246, 251, 0.2));
/* [288ef] Ends this CSS block. */
}

/* [288eg] Starts a CSS selector rule block. */
.card-icon svg {
  /* [288eh] Fills icon box width. */
  width: 1.1rem;
  /* [288ei] Fills icon box height. */
  height: 1.1rem;
  /* [288ej] Uses stroke-only icon style. */
  fill: none;
  /* [288ek] Uses current text color for icon outline. */
  stroke: currentColor;
  /* [288el] Sets consistent outline thickness. */
  stroke-width: 1.7;
  /* [288em] Rounds line caps for polished icon style. */
  stroke-linecap: round;
  /* [288en] Rounds line joins for polished icon style. */
  stroke-linejoin: round;
/* [288eo] Ends this CSS block. */
}

/* [288f] Keeps this CSS statement in place. */
.card-link:hover,
/* [288g] Starts a CSS selector rule block. */
.card-link:focus-visible {
  /* [288h] Sets one CSS property value. */
  transform: translateY(-2px);
  /* [288i] Sets one CSS property value. */
  border-color: rgba(242, 246, 251, 0.46);
  /* [288j] Sets one CSS property value. */
  box-shadow:
    /* [288k] Keeps this CSS statement in place. */
    0 20px 42px rgba(0, 0, 0, 0.55),
    /* [288l] Keeps this CSS statement in place. */
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    /* [288m] Keeps this CSS statement in place. */
    0 0 20px rgba(214, 221, 228, 0.2);
/* [288n] Ends a CSS block scope. */
}

/* [289] Starts a CSS selector rule block. */
.card h2 {
  /* [289a] Places heading before icon in the flex order. */
  order: 1;
  /* [290] Sets one CSS property value. */
  margin: 0;
  /* [291] Sets one CSS property value. */
  font-family: "Syncopate", sans-serif;
  /* [292] Sets one CSS property value. */
  font-size: 0.9rem;
  /* [293] Sets one CSS property value. */
  color: var(--gold-strong);
  /* [293a] Centers heading text in the card. */
  text-align: center;
/* [294] Ends a CSS block scope. */
}

/* [295] Starts a CSS selector rule block. */
.card p {
  /* [296] Sets one CSS property value. */
  margin: 0.44rem 0 0;
  /* [297] Sets one CSS property value. */
  color: var(--muted);
  /* [298] Sets one CSS property value. */
  font-size: 0.86rem;
  /* [299] Sets one CSS property value. */
  line-height: 1.35;
/* [300] Ends a CSS block scope. */
}

/* [301] Starts a CSS selector rule block. */
.site-footer {
  /* [302] Sets one CSS property value. */
  width: 100%;
  /* [303] Sets one CSS property value. */
  margin: 0;
  /* [303a] Keeps footer in normal flow at the end of page content. */
  position: static;
  /* [303b] Places footer below any floated content. */
  clear: both;
  /* [303e] Ensures footer renders as a full-width block. */
  display: block;
  /* [304] Sets one CSS property value. */
  border-top: var(--glass-border);
  /* [305] Keeps this CSS statement in place. */
  background:
    /* [305a] Glass sheen overlay with stronger fog for legibility. */
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18) 38%, rgba(255, 255, 255, 0.08) 72%),
    /* [306] Mid-layer adds subtle dusk tint to lift text contrast. */
    linear-gradient(180deg, rgba(12, 16, 28, 0.32), rgba(12, 16, 28, 0.38)),
    /* [307] Base panel fill retains the glass feel. */
    var(--panel-fill);
  /* [308] Increase fog to make footer text read above busy backdrops. */
  backdrop-filter: blur(16px) saturate(160%);
  /* [309] Mirror for Safari. */
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  /* [309a] Adds breathing room from last content block to footer. */
  margin-top: 2.25rem;
  /* [309b] Prevents footer shrinking in flex layouts. */
  flex-shrink: 0;
  /* [309c] Keeps footer paint order behind interactive media layers. */
  z-index: 0;
  /* [310a] Relative positioning for sheen overlay. */
  position: relative;
/* [310] Ends a CSS block scope. */
}

.site-footer::before {
  /* [310b] Glass sheen effect element. */
  content: "";
  /* [310c] Overlay positioning. */
  position: absolute;
  /* [310d] Full coverage. */
  inset: 0;
  /* [310e] Sheen gradient. */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12) 35%, rgba(255, 255, 255, 0) 68%);
  /* [310f] Prevent interaction. */
  pointer-events: none;
/* [310g] Ends a CSS block scope. */
}

/* [311] Starts a CSS selector rule block. */
.footer-inner {
  /* [312] Sets one CSS property value. */
  padding: 0.665rem 0;
  /* [313] Sets one CSS property value. */
  display: grid;
  /* [314] Sets one CSS property value. */
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  /* [315a] Preserves horizontal spacing between footer columns. */
  column-gap: 0.85rem;
  /* [315b] Reduces vertical row spacing by 30%. */
  row-gap: 0.595rem;
/* [316] Ends a CSS block scope. */
}

/* [317] Starts a CSS selector rule block. */
.footer-col h3 {
  /* [318] Sets one CSS property value. */
  margin: 0 0 0.245rem;
  /* [319] Sets one CSS property value. */
  font-family: "Syncopate", sans-serif;
  /* [320] Sets one CSS property value. */
  font-size: 0.72rem;
  /* [321] Sets one CSS property value. */
  letter-spacing: 0.09em;
  /* [322] Sets one CSS property value. */
  color: var(--silver-strong);
/* [323] Ends a CSS block scope. */
}

/* [324] Starts a CSS selector rule block. */
.footer-links {
  /* [325] Sets one CSS property value. */
  list-style: none;
  /* [326] Sets one CSS property value. */
  margin: 0;
  /* [327] Sets one CSS property value. */
  padding: 0;
  /* [328] Sets one CSS property value. */
  display: grid;
  /* [329] Reduces link row spacing by 30%. */
  gap: 0.063rem;
/* [330] Ends a CSS block scope. */
}

/* [331] Starts a CSS selector rule block. */
.footer-links a {
  /* [332] Sets one CSS property value. */
  color: var(--muted);
  /* [333] Sets one CSS property value. */
  text-decoration: none;
  /* [334] Sets one CSS property value. */
  font-size: 0.83rem;
/* [335] Ends a CSS block scope. */
}

/* [336] Starts a CSS selector rule block. */
.footer-links span {
  /* [337] Sets one CSS property value. */
  color: var(--muted);
  /* [338] Sets one CSS property value. */
  font-size: 0.83rem;
/* [339] Ends a CSS block scope. */
}

/* [340] Keeps this CSS statement in place. */
.footer-links a:hover,
/* [341] Starts a CSS selector rule block. */
.footer-links a:focus-visible {
  /* [342] Sets one CSS property value. */
  color: var(--silver-strong);
/* [343] Ends a CSS block scope. */
}

/* [344] Starts a CSS selector rule block. */
.footer-links strong {
  /* [345] Sets one CSS property value. */
  color: var(--silver-strong);
  /* [346] Sets one CSS property value. */
  font-weight: 700;
/* [347] Ends a CSS block scope. */
}

/* [348] Starts a responsive media query block. */
@media (max-width: 768px) {
  /* [348a] Starts a CSS selector rule block. */
  :root {
    /* [348b] Uses two columns for iPad-portrait hero layout. */
    --carousel-cols: 2;
    /* [348c] Keeps medium viewport hero height fluid and stable. */
    --carousel-height: clamp(260px, 48vh, 420px);
    /* [348d] Slightly narrows side padding for medium widths. */
    --carousel-pad-inline: clamp(2rem, 4.2vw, 2.75rem);
  /* [348e] Ends a CSS block scope. */
  }

  .shell {
    width: min(1160px, 95vw);
  }

  .topbar {
    padding: 0.6rem 0.55rem 0.62rem;
    gap: clamp(0.26rem, 2vw, 0.46rem);
  }

  .menu {
    /* Let the whole row squeeze more before the phone breakpoint. */
    --menu-group-gap: clamp(0.32rem, 1.8vw, 0.56rem);
    gap: clamp(0.12rem, 0.9vw, 0.26rem);
  }

  .menu-home-link {
    font-size: clamp(0.66rem, 1.8vw, 0.86rem);
    padding: 0 clamp(0.04rem, 0.6vw, 0.14rem);
    height: clamp(1.7rem, 4.8vw, 2.02rem);
    letter-spacing: clamp(0, 0.25vw, 0.01em);
  }

  .menu-link {
    padding: 0 clamp(0.22rem, 1.6vw, 0.48rem);
    height: clamp(1.7rem, 5.1vw, 2.02rem);
    font-size: clamp(0.62rem, 1.5vw, 0.84rem);
    letter-spacing: clamp(0.01em, 0.55vw, 0.03em);
  }

  /* [353] Starts a CSS selector rule block. */
  .cards {
    /* [354] Sets one CSS property value. */
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  /* [355] Ends a CSS block scope. */
  }

  /* [359] Starts a CSS selector rule block. */
  .footer-inner {
    /* [360] Keeps all footer columns inline above 600px. */
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  /* [361] Ends a CSS block scope. */
  }
/* [362] Ends a CSS block scope. */
}

/* [363] Starts a responsive media query block. */
@media (max-width: 430px) {
  .shell {
    width: min(1160px, 96vw);
  }

  /* [363aa] Starts a CSS selector rule block. */
  :root {
    /* [363ab] Uses one column for iPhone-portrait hero layout. */
    --carousel-cols: 2;
    /* [363ac] Keeps phone hero height readable without abrupt jumps. */
    --carousel-height: clamp(230px, 54vh, 360px);
    /* [363ad] Tightens side padding for phone rail controls. */
    --carousel-pad-inline: clamp(1.65rem, 8vw, 2.25rem);
    /* [363ae] Tightens vertical padding for compact phone layout. */
    --carousel-pad-block: clamp(0.42rem, 1.4vw, 0.65rem);
  /* [363af] Ends a CSS block scope. */
  }

  /* [363a] Starts a CSS selector rule block. */
  .bg-layer {
    /* [363b] Sets one CSS property value. */
    background-attachment: scroll, scroll;
    /* [363c] Sets one CSS property value. */
    background-position: center top, center top;
  /* [363d] Ends a CSS block scope. */
  }

  /* Allow carousel meta to wrap only at the mobile breakpoint. */
  .carousel-meta {
    flex-wrap: wrap;
  }

  .carousel-caption {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  /* [364] Starts a CSS selector rule block. */
  .topbar {
    /* [365] Keeps flex layout so nav stays on one row. */
    display: flex;
    /* [365a] Wraps items to maintain flex behavior. */
    flex-wrap: nowrap;
    /* [366] Keeps items aligned at start. */
    align-items: center;
    /* Tighten padding/gap so nav fits in one row on phones. */
    padding: 0.5rem 0.45rem 0.54rem;
    gap: 0.18rem;
  /* [367] Ends a CSS block scope. */
  }

  /* [367a] Starts a CSS selector rule block. */
  .floating-brand {
    /* [367b] Centers the floating heading block on narrow screens. */
    justify-items: center;
  /* [367c] Ends a CSS block scope. */
  }

  /* [368] Starts a CSS selector rule block. */
  .menu {
    /* Tighten the between-group spacer so all items fit without scrolling. */
    --menu-group-gap: clamp(0.22rem, 1.2vw, 0.45rem);
    /* [369] Keeps menu items right-aligned on narrow screens. */
    justify-content: flex-end;
    gap: clamp(0.1rem, 0.8vw, 0.18rem);
  /* [370] Ends a CSS block scope. */
  }

  .menu-home-link {
    font-size: clamp(0.62rem, 2.4vw, 0.82rem);
    padding: 0 clamp(0.04rem, 0.7vw, 0.1rem);
    height: clamp(1.54rem, 4.2vw, 1.8rem);
    letter-spacing: 0;
  }

  .menu-link {
    padding: 0 clamp(0.2rem, 1.6vw, 0.42rem);
    height: clamp(1.54rem, 4.4vw, 1.82rem);
    font-size: clamp(0.58rem, 2.1vw, 0.78rem);
    letter-spacing: 0.015em;
  }

  /* [371] Starts a CSS selector rule block. */
  .slider-frame {
    /* [372] Keeps overlay control layout on narrow screens. */
    position: relative;
  /* [376] Ends a CSS block scope. */
  }

  /* [382] Starts a CSS selector rule block. */
  .cards {
    /* [383] Sets one CSS property value. */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  /* [384] Ends a CSS block scope. */
  }

  /* [385] Starts a CSS selector rule block. */
  .footer-inner {
    /* [386] Sets one CSS property value. */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* [387] Reduces mobile footer vertical padding by 30%. */
    padding: 0.546rem 0;
    /* [387a] Keeps reduced vertical row spacing on mobile. */
    row-gap: 0.126rem;
  /* [388] Ends a CSS block scope. */
  }

  /* [388a] Stacks hero heading content only below 600px. */
  .hero-head {
    /* Keep the hero head from stacking; squeeze instead. */
    flex-direction: row;
    align-items: end;
  /* [388d] Ends a CSS block scope. */
  }
/* [389] Ends a CSS block scope. */
}

/* Respect reduced-motion preference by disabling shine/zoom motion for menu controls. */
@media (prefers-reduced-motion: reduce) {
  .menu-home-link,
  .menu-link {
    transform: none !important;
    transition:
      color 100ms ease,
      border-color 100ms ease,
      box-shadow 100ms ease,
      text-shadow 100ms ease !important;
  }

  .menu-home-link::before,
  .menu-link::before {
    animation: none !important;
    opacity: 0 !important;
    transform: none !important;
  }
}

/* Parent-only blur contract for ZMWN shared pages */
.topbar.glass,
.portfolio-block,
.site-footer {
  background: var(--panel-fill);
  border: 1px solid var(--panel-border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0px) saturate(128%);
  -webkit-backdrop-filter: blur(0px) saturate(128%);
}

/* Remove glass paint from non-parent glass nodes so blur does not compound */
.glass:not(.topbar):not(.portfolio-intro):not(.portfolio-hero):not(.category-block):not(.card) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Lift ZMWN footer contrast without changing shared footer layout. */
.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05) 34%, rgba(255, 255, 255, 0.02) 72%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.58), rgba(6, 10, 18, 0.7)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.site-footer .footer-links a,
.site-footer .footer-links span {
  color: rgba(244, 245, 246, 0.84);
}

/* Child visual reset: transparent, no chrome, no nested blur */
.slider-frame,
.slider-btn,
.carousel-grid,
.carousel-tile,
.carousel-slide .is-broken,
.carousel-empty-message,
.dot,
.dot.is-active,
.footer-links a,
.footer-links span,
.footer-links strong {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  animation: none !important;
  transition: none !important;
}

.slider-btn:hover,
.slider-btn:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  transform: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}

.menu-link.is-active::after {
  content: none !important;
  animation: none !important;
  box-shadow: none !important;
}

.menu-link.is-active:hover::after {
  animation: none !important;
}

/* Keep the shared ZMWN home wrapper invisible while preserving layout and spacing. */
.portfolio-block {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Use long thin full-height arrows with no rail chrome. */
#prevProject,
#nextProject {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-strong);
  font-size: 0;
  font-weight: 200;
  line-height: 1;
  text-shadow: none;
  z-index: 4;
}

#prevProject {
  left: 0;
}

#nextProject {
  right: 0;
}

#prevProject::before,
#nextProject::before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background-image: url("./assets/icons/hero-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#prevProject::before {
  transform: none;
}

#nextProject::before {
  transform: scaleX(-1);
}

#prevProject:hover,
#prevProject:focus-visible,
#nextProject:hover,
#nextProject:focus-visible {
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  filter: none;
}

@media (max-width: 430px) {
  #prevProject,
  #nextProject {
    width: 26px;
  }

  #prevProject::before,
  #nextProject::before {
    height: 150px;
  }
}
