/* SECTIONS — typography & layout helpers */
.selected-section, .contact-section { padding: 34px 0 12px; }
.selected-section { padding-top: 72px; }
.eyebrow { margin: 0 0 10px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: #af8570; }
.eyebrow-dark { color: #af8570; }
h2 { margin: 0; font-family: Inter, system-ui, sans-serif; font-size: clamp(26px,2.8vw,38px); font-weight: 300; line-height: .96; letter-spacing: -.03em; transition: opacity .35s ease, text-shadow .35s ease; }
h2:hover { text-shadow: 0 0 36px rgba(246,242,234,.18); }
.collections-head { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin: 0 0 22px; padding: 4px 0 6px; }
.collections-kicker { margin: 0; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(246,242,234,.52); font-weight: 500; }
.collections-title { margin: 0; font-family: Inter, system-ui, sans-serif; font-size: clamp(30px,3.6vw,48px); font-weight: 300; line-height: .96; letter-spacing: -.03em; color: var(--text); }
.collections-title:hover { text-shadow: 0 0 36px rgba(246,242,234,.14); }
@media (max-width: 768px) {
  .collections-head { margin-bottom: 16px; }
  .collections-kicker { font-size: 9px; letter-spacing: .22em; }
  .collections-title { font-size: clamp(24px,8vw,34px); }
}

/* LIGHTBOX */
@keyframes lightboxZoom {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes backdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox { width: min(1260px,calc(100% - 32px)); padding: 0; border: none; background: transparent; color: #fff; outline: none; }
.lightbox[open] { animation: lightboxZoom 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.lightbox[open]::backdrop { animation: backdropFade 0.4s ease forwards; }
.lightbox-stage { position: relative; }
.lightbox-stage img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 20px; background: #0e0e0e; }
.lightbox-meta { display: flex; justify-content: space-between; align-items: stretch; padding: 12px 0 0; margin-left: var(--img-offset-x, 0px); margin-right: var(--img-offset-x, 0px); }
.lightbox-meta-text { display: flex; flex-direction: column; justify-content: space-between; }
.lightbox-title { font-size: 18px; font-weight: 600; }
.lightbox-category { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.lb-music-btn { display: flex; align-items: center; justify-content: center; width: 36px; padding: 0; background: rgba(255,255,255,.08); border: none; border-radius: 8px; color: rgba(255,255,255,.7); cursor: pointer; transition: color .2s, background .2s; flex-shrink: 0; }
.lb-music-btn:hover, .lb-music-btn.active { background: rgba(255,255,255,.15); color: #fff; }
.lb-embed-wrap { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); margin-left: var(--img-offset-x, 0px); margin-right: var(--img-offset-x, 0px); }
.lb-embed-wrap.open { max-height: 80px; }
.lb-embed-wrap iframe { display: block; width: 100%; height: 80px; border: none; }
.lightbox-close, .lightbox-arrow { position: fixed; z-index: 60; border: none; background: rgba(12,12,12,.62); color: #fff; cursor: pointer; backdrop-filter: blur(10px); }
.lightbox-close { top: 22px; right: 24px; width: 48px; height: 48px; border-radius: 999px; font-size: 32px; line-height: 1; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 999px; font-size: 36px; display: flex; align-items: center; justify-content: center; }
.lightbox-arrow.prev { left: 18px; }
.lightbox-arrow.next { right: 18px; }

/* INTRO ANIMATIONS */
.intro-fade, .intro-rise { opacity: 0; animation: fadeIn .9s ease forwards; }
.intro-rise { transform: translateY(16px); animation: riseIn .85s cubic-bezier(.2,.7,.1,1) forwards; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   BIO SECTION — redesign cinematografico
   ============================================================ */
.bio-section {
  position: relative;
  padding: 0 0 64px;
  overflow: hidden;
}

/* --- HERO: collage cinematografico + titolo in overlay --- */
.bio-hero {
  position: relative;
  width: 100%;
  height: clamp(480px, 64vw, 840px);
  overflow: hidden;
}
.bio-collage-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: bioKenBurns 34s ease-in-out infinite alternate;
}
@keyframes bioKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.bio-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  filter: saturate(.55) brightness(.8) contrast(1.08);
  --bio-collage-scale: 1.16;
  transform: scale(var(--bio-collage-scale));
  transform-origin: center center;
}
.bio-collage-fade {
  position: absolute;
  inset: -1px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      #0b0b0b 0%, rgba(11,11,11,.62) 5%, transparent 20%,
      transparent 30%, rgba(11,11,11,.5) 60%, rgba(11,11,11,.9) 83%, #0b0b0b 100%),
    linear-gradient(to right,  #0b0b0b 0%, rgba(11,11,11,.85) 5%, transparent 17%),
    linear-gradient(to left,   #0b0b0b 0%, rgba(11,11,11,.85) 5%, transparent 17%);
}

/* --- TITLE CARD: eyebrow + nome sopra il collage --- */
.bio-header {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(26px, 3.6vw, 54px);
}
.bio-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: #c79a82;
  margin: 0 0 14px;
  font-weight: 500;
}
.bio-eyebrow-line {
  display: inline-block;
  width: 0;
  height: 1px;
  flex: none;
  background: linear-gradient(90deg, #c79a82, rgba(199,154,130,.15));
  transition: width 1.1s cubic-bezier(.2,.7,.1,1) .2s;
}
.bio-header.is-revealed .bio-eyebrow-line { width: 46px; }
.bio-name {
  font-size: clamp(46px, 7.4vw, 104px);
  font-weight: 200;
  letter-spacing: -.045em;
  color: var(--text);
  margin: 0;
  line-height: .9;
  text-shadow: 0 2px 44px rgba(0,0,0,.55);
}

/* --- LAYOUT testo --- */
.bio-layout {
  display: flex;
  gap: clamp(44px, 5vw, 76px);
  align-items: stretch;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 48px) 0;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bio-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.bio-columns {
  display: flex;
  gap: clamp(30px, 3.6vw, 48px);
  flex-wrap: wrap;
}
.bio-col-text {
  flex: 1 1 260px;
}
.bio-text {
  margin: 0 0 1.4em;
  font-size: 15.5px;
  line-height: 1.86;
  color: rgba(246,242,234,.84);
  font-weight: 300;
  letter-spacing: .01em;
}
.bio-quote {
  margin: 1.5em 0;
  padding: 2px 0 2px 20px;
  position: relative;
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.7;
  color: #d9b6a0;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .015em;
}
.bio-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #c79a82, rgba(199,154,130,.12));
}

/* --- ASIDE: motto + musings --- */
.bio-aside {
  flex: 0 0 320px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.bio-motto-wrap {
  position: relative;
  z-index: 1;
  width: 290px;
  -webkit-mask-image: radial-gradient(ellipse 94% 90% at 50% 50%, black 56%, rgba(0,0,0,.8) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 94% 90% at 50% 50%, black 56%, rgba(0,0,0,.8) 78%, transparent 100%);
  transition: transform .7s cubic-bezier(.2,.7,.1,1),
              filter 2s cubic-bezier(.2,.7,.1,1), opacity 1.8s ease;
  opacity: 0;
  filter: blur(16px) brightness(.35);
}
.bio-motto-wrap.is-revealed {
  opacity: .72;
  filter: blur(0) brightness(1);
}
.bio-motto-wrap:hover {
  transform: scale(1.03);
  opacity: 1;
  filter: blur(0) brightness(1) drop-shadow(0 0 34px rgba(175,133,112,.3));
}
.bio-motto-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- sfondo collage sfocato --- */
.bio-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: -50px;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to bottom,
      #0b0b0b clamp(480px, 64vw, 840px),
      transparent calc(clamp(480px, 64vw, 840px) + 80px),
      transparent 70%,
      #0b0b0b 94%),
    linear-gradient(to right, #0b0b0b 0%, transparent 8%, transparent 92%, #0b0b0b 100%),
    url('../assets/philosographer_bokeh.jpg');
  background-size: auto, auto, cover;
  background-position: 0 0, 0 0, center 55%;
  filter: blur(40px) saturate(.50) brightness(.95);
  opacity: .82;
}

/* --- grana fotografica (statica) --- */
.bio-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: .07;
  mix-blend-mode: overlay;
}

/* --- scroll reveal --- */
.bio-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.1,1);
}
.bio-reveal.is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .bio-reveal { opacity: 1; transform: none; transition: none; }
  .bio-collage-wrap { animation: none; }
  .bio-eyebrow-line { transition: none; }
  .bio-motto-wrap { opacity: .72; filter: none; transition: none; }
}

/* Responsive Bio */
@media (max-width: 900px) {
  .bio-hero { height: clamp(380px, 70vw, 560px); }
  .bio-name { font-size: clamp(40px, 9vw, 70px); }
  .bio-layout { flex-direction: column; gap: 36px; }
  .bio-columns { flex-direction: column; gap: 24px; }
  .bio-aside { width: 100%; flex: auto; align-self: center; margin-top: 8px; margin-bottom: 24px; }
  .bio-motto-wrap { width: min(86vw, 360px); max-width: none; margin: 0 auto; }
}
@media (max-width: 640px) {
  .bio-section { padding: 0 0 56px; }
  .bio-hero { height: clamp(340px, 86vw, 480px); }
  .bio-header { padding-bottom: 24px; }
  .bio-layout { padding-top: 36px; }
  .bio-text { font-size: 14px !important; line-height: 1.8 !important; }
  .bio-aside { margin-bottom: 40px; }
}


/* CONTACT — refined editorial layout */
.contact-section {
  padding: clamp(54px, 7vw, 84px) 0 56px;
}
.contact-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(175,133,112,.18), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(246,242,234,.08), transparent 30%),
    linear-gradient(155deg, #17120f 0%, #0f0f0f 62%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,.08);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(360px, 1.22fr);
  gap: clamp(26px, 4vw, 58px);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.contact-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.045), transparent 34%, rgba(255,255,255,.025));
  opacity: .55;
}
.contact-header, .contact-intro, .contact-cards, .contact-cta-row {
  position: relative;
  z-index: 1;
}
.contact-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}
.contact-video-wrap {
  flex-shrink: 0;
  width: clamp(78px, 7vw, 104px);
  height: clamp(78px, 7vw, 104px);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(175,133,112,.34);
  box-shadow: 0 0 0 1px rgba(255,255,255,.035), 0 18px 46px rgba(0,0,0,.34);
}
.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-title {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .92;
  color: var(--text);
  margin: 0;
  max-width: 560px;
}
.contact-intro {
  grid-column: 2;
  margin: 8px 0 2px;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
  color: rgba(246,242,234,.68);
  max-width: 720px;
  text-wrap: pretty;
}
.contact-cards {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.contact-card {
  min-height: 205px;
  padding: 24px 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.075);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, background .3s ease, transform .28s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(175,133,112,.30);
  background: linear-gradient(180deg, rgba(175,133,112,.08), rgba(255,255,255,.025));
}
.contact-card-kicker {
  margin: 0 0 16px;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #af8570;
  font-weight: 500;
}
.contact-card-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(246,242,234,.64);
  font-weight: 300;
  flex: 1 1 auto;
}
.contact-card-rates-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246,242,234,.58);
  cursor: pointer;
  transition: opacity .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.contact-card-rates-btn:hover {
  color: #af8570;
  border-color: rgba(175,133,112,.35);
  background: rgba(175,133,112,.06);
}
.rates-chevron { display: inline-block; transition: transform .3s ease; font-style: normal; }
.contact-card-rates-btn[aria-expanded="true"] .rates-chevron { transform: rotate(180deg); }
.contact-card-rates {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.2,.7,.1,1), opacity .3s ease;
  opacity: 0;
}
.contact-card-rates.open {
  max-height: 150px;
  opacity: 1;
}
.rates-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin: 11px 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.055);
}
.rates-line:first-child { border-top: 1px solid rgba(175,133,112,.13); margin-top: 14px; }
.rates-label { font-size: 11.5px; color: rgba(246,242,234,.46); font-weight: 300; }
.rates-price { font-size: 11.5px; color: rgba(246,242,234,.68); font-weight: 400; white-space: nowrap; }
.rates-note {
  margin: 10px 0 0;
  font-size: 10.5px;
  color: rgba(246,242,234,.30);
  line-height: 1.5;
  font-style: italic;
}
.contact-cta-row {
  grid-column: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
}
.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid rgba(175, 133, 112, 0.46);
  background: rgba(175, 133, 112, 0.1);
  color: rgba(246, 242, 234, 0.92);
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.07em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
}
.contact-cta-btn:hover {
  background: rgba(175, 133, 112, 0.18);
  border-color: #af8570;
  color: #fff;
  transform: translateY(-1px);
}
.contact-cta-arrow { transition: transform 0.4s ease; }
.contact-cta-btn:hover .contact-cta-arrow { transform: translateX(8px); }

/* DRAWER */
.contact-drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.contact-drawer.open { pointer-events: auto; }
.contact-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .4s ease; }
.contact-drawer.open .contact-drawer-overlay { background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.contact-drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 92vw); background: #0f0e0d; border-left: 1px solid rgba(255,255,255,.08); transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.7,.1,1); overflow-y: auto; }
.contact-drawer.open .contact-drawer-panel { transform: translateX(0); }
.contact-drawer-close { position: absolute; top: 18px; right: 20px; width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); color: rgba(255,255,255,.7); font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.contact-drawer-close:hover { background: rgba(255,255,255,.12); }
.contact-drawer-inner { padding: 52px 36px 48px; display: flex; flex-direction: column; }
.contact-drawer-title { font-size: clamp(24px, 4vw, 32px); font-weight: 300; letter-spacing: -.03em; line-height: 1.1; color: var(--text); margin: 0 0 12px; }
.contact-drawer-sub { font-size: 13px; color: rgba(246,242,234,.62); font-weight: 300; line-height: 1.6; margin: 0 0 4px; }
.contact-drawer-fields { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; margin-top: 28px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,242,234,.56); font-weight: 500; }
.contact-input { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 12px 14px; font: inherit; font-size: 14px; color: rgba(246,242,234,.88); outline: none; transition: border-color .25s ease, background .25s ease; appearance: none; }
.contact-input:focus { border-color: rgba(175,133,112,.6); background: rgba(175,133,112,.04); }
.contact-input::placeholder { color: transparent; }
.contact-select { cursor: pointer; }
.contact-select option { background: #111; color: #f6f2ea; }
.contact-textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.contact-drawer-send { padding: 14px 28px; border-radius: 999px; border: none; background: #af8570; color: #111; font: inherit; font-size: 13px; font-weight: 500; letter-spacing: .06em; cursor: pointer; transition: background .25s ease, transform .2s ease; margin-bottom: 16px; }
.contact-drawer-send:hover { background: #c4967f; transform: translateY(-1px); }
.contact-drawer-send:disabled { cursor: default; transform: none; }
.contact-drawer-alt { font-size: 12px; color: rgba(246,242,234,.56); letter-spacing: .04em; text-align: center; transition: color .25s ease; }
.contact-drawer-alt:hover { color: rgba(246,242,234,.7); }
.contact-drawer-confirm { font-size: 14px; color: #af8570; line-height: 1.6; margin: 0 0 20px; padding: 16px; border: 1px solid rgba(175,133,112,.25); border-radius: 10px; background: rgba(175,133,112,.06); }

/* FOOTER */
.site-footer { border-top: 1px solid rgba(255,255,255,.06); padding: 32px 0 40px; margin-top: 8px; }
.site-footer-inner { width: min(1480px, calc(100% - 28px)); margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.footer-symbol { width: 28px; height: auto; flex-shrink: 0; opacity: .38; }
.footer-copy { margin: 0; font-size: 11px; line-height: 1.7; color: rgba(246,242,234,.28); letter-spacing: .02em; }
@media (max-width: 600px) {
  .site-footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-symbol { width: 22px; }
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .contact-header {
    flex-direction: row;
    align-items: center;
  }
  .contact-intro,
  .contact-cards,
  .contact-cta-row {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .contact-section { padding: 44px 0 46px; }
  .contact-wrap {
    padding: 24px 18px 22px;
    gap: 22px;
    border-radius: 24px;
  }
  .contact-header { gap: 16px; }
  .contact-video-wrap { width: 72px; height: 72px; }
  .contact-title { font-size: clamp(24px, 7.5vw, 30px); letter-spacing: -.045em; }
  .contact-cards { grid-template-columns: 1fr; gap: 12px; }
  .contact-card { min-height: 0; padding: 20px; }
  .contact-cta-btn { width: 100%; justify-content: center; }
}

/* MUSINGS LINK */
.musings-link { display: inline-flex; flex-direction: column; align-items: flex-start; text-decoration: none; color: inherit; align-self: flex-start; margin-top: auto; padding-top: 24px; }
.musings-enter { display: flex; align-items: center; gap: .5em; margin: 0 0 clamp(4px, .4vw, 6px); font-size: clamp(8px, .7vw, 10px); line-height: 1; font-weight: 300; letter-spacing: .28em; text-transform: uppercase; color: rgba(175,133,112,.5); transition: color 0.25s ease; }
.musings-enter svg { flex-shrink: 0; transition: transform 0.25s ease, opacity 0.25s ease; opacity: .5; }
.musings-link:hover .musings-enter { color: rgba(175,133,112,.9); }
.musings-link:hover .musings-enter svg { transform: translateX(5px); opacity: 1; }
