/* ============================================================
   Filaneyka link page
   Theme: soft blue-grey fixed gradient, frosted cards
   Profile photo: large headshot fading into the page gradient
   ============================================================ */

:root {
  color-scheme: light;
}

html {
  /* Same gradient, scroll-attached: it propagates to the canvas and
     paints the whole document plus whatever shows beyond it (overscroll
     stretch, pinch-zoom-out), so no exposed area can ever be white */
  background: linear-gradient(55deg, #97b5d3, #c2ccd1, #d0d0e2);
}

/* Gradient glued to the viewport. background-attachment: fixed on the
   root is unreliable in mobile Chrome/Android — scrolling with the
   collapsing URL bar leaves unpainted strips at the bottom.
   A position:fixed layer sized to the LARGE viewport (100lvh) is already
   as tall as the screen with the URL bar hidden, so the area exposed
   while the bar collapses stays painted. */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: -1;
  background: linear-gradient(55deg, #97b5d3, #c2ccd1, #d0d0e2);
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  color: #373e48;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  background: transparent;
}

.container {
  box-sizing: border-box;
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 22px;
  padding-left: 22px;
}

/* ------------------------------------------------------------
   Profile hero photo — like the Liinks "headshot" layout:
   the image sits at the very top and dissolves at the bottom
   into the fixed background gradient via a CSS mask
   ------------------------------------------------------------ */

.profile-hero {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.profile-hero img {
  display: block;
  width: 100%;
  height: clamp(320px, 100vw, 500px);
  object-fit: cover;
  object-position: center 22%;

  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, rgba(0, 0, 0, 0) 98%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, rgba(0, 0, 0, 0) 98%);
}

/* Share button floats over the photo, top-right */
.profile-hero .sharediv {
  position: absolute;
  top: 16px;
  right: 16px;
}

/* ------------------------------------------------------------
   Name / badge / description
   ------------------------------------------------------------ */

h1 {
  margin: 14px 0 10px;
  text-align: center;
  color: #333a44;
  font-family: 'Lato', sans-serif;
  font-size: clamp(21px, 5.5vw, 25px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-wrap: balance;
}

.description-parent {
  padding-bottom: 30px;
}

.description-parent h4 {
  margin: 0 0 10px;
  text-align: center;
  color: #333a44;
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.description-parent p {
  max-width: 400px;
  margin: 0 auto 12px;
  text-align: center;
  color: #454b55;
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
}

.description-parent p:last-child {
  margin-bottom: 0;
}

/* The bullet line under the description: quieter, wider tracking */
.description-parent p.description-tagline {
  padding-top: 2px;
  color: #596069;
  font-size: 12.5px;
  letter-spacing: 0.03em;
}

/* ------------------------------------------------------------
   Social icons
   ------------------------------------------------------------ */

.social-icon-div.row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-right: 0;
  margin-left: 0;
}

.social-icon-div a.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  text-decoration: none;
}

.social-icon {
  font-size: 30px;
  line-height: 1;
  color: #2f3540;
  transition: transform 180ms ease-out;
}

.social-link:hover .social-icon {
  transform: translateY(-4px) rotate(-4deg);
  text-shadow: 0 6px 14px rgba(47, 53, 64, 0.28);
}

.social-link:active .social-icon {
  transform: translateY(-1px) scale(0.9);
}

.button-spacer {
  clear: both;
}

/* ------------------------------------------------------------
   Frosted full-width pill buttons
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   Entrances
   - .rise-in: staggered load entrance (delay via --rise-delay)
   - .reveal:  scroll entrance, classes applied by script.js
   ------------------------------------------------------------ */

.rise-in {
  animation: riseIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--rise-delay, 0ms);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  animation: riseIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Load entrance of the hero photo: fade + gentle zoom out */
.profile-hero img {
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.button-hover {
  display: inline-block;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: .3s;
  transition-property: transform;
}

.button-hover:active,
.button-hover:focus,
.button-hover:hover {
  transform: scale(1.1);
}

.button-entrance > a.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  color: #333a44;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  padding: 17px 26px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button, .button * {
  text-decoration: none;
}

.button-entrance > a.button:hover,
.button-hover:hover {
  transform: translateY(-2px);
  color: #333a44;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18) !important;
  text-decoration: none;
}

.button-entrance > a.button:active {
  transform: translateY(0) scale(0.97);
  background: rgba(255, 255, 255, 0.62);
}

.button .icon {
  flex: 0 0 auto;
  font-size: 15px;
  line-height: 1;
  color: rgba(51, 58, 72, 0.75);
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), color 180ms ease;
}

.button:hover .icon {
  color: #333a44;
  transform: translateY(-2px) rotate(-8deg);
}

.button:active .icon {
  transform: scale(0.88);
}

/* Thicker lines for the font icons: these are fixed-weight glyphs,
   so stroke width (px) is the knob — 0 = default, ~1px = very bold */
.share-icon,
.button .icon {
  -webkit-text-stroke: 0.7px currentColor;
}

/* ------------------------------------------------------------
   Share button — small frosted circle with share-nodes icon,
   like the Liinks profile header
   ------------------------------------------------------------ */

.share-icon {
  font-size: 16px;
  line-height: 1;
  color: #2c2c2c;
}

.sharebutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #2c2c2c;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sharebutton:hover {
  color: #2c2c2c;
  opacity: 0.9;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  outline: 0;
}

/* Springy spin of the share icon on hover */
.sharebutton .share-icon {
  transition: transform 200ms ease;
}

.sharebutton:hover .share-icon {
  animation: shareSpin 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Feedback after the link has been copied (icon swaps to a check via JS) */
.sharebutton.share-copied .share-icon {
  color: #1f9d55;
}

@keyframes shareSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.toastdiv {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toastbox {
  width: 280px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 4px;
  position: fixed;
  top: 105%;
  transition: transform 0.3s linear;
  z-index: 2;
  text-align: center;
}

.toastbox.toast-tox--active {
  transform: translateY(-150px);
}

/* ------------------------------------------------------------
   Booking CTA card — black with animated rainbow border
   ------------------------------------------------------------ */

.filaneyka-cta {
  --cta-bg: #111318;
  --cta-text: #ffffff;
  --cta-muted: #aeb4c2;
  --cta-accent: #d9ff45;
  --cta-radius: 28px;

  position: relative;
  isolation: isolate;

  display: flex;
  align-items: center;
  gap: 18px;

  width: 100%;
  max-width: 100%;
  min-height: 112px;
  box-sizing: border-box;

  margin: 24px 0;
  padding: 22px 24px;
  overflow: hidden;

  color: var(--cta-text);
  text-decoration: none;

  background: var(--cta-bg);

  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--cta-radius);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);

  font-family: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

/* Light sweep across the card on hover */
.filaneyka-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.1) 50%, transparent 58%);
  background-size: 250% 100%;
  background-position: 220% 0;
  opacity: 0;
  border-radius: inherit;
  pointer-events: none;
}

.filaneyka-cta:hover::after {
  opacity: 1;
  animation: ctaSheen 0.9s ease-out;
}

@keyframes ctaSheen {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}

.filaneyka-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  background:
    radial-gradient(circle at 88% 15%, rgba(217, 255, 69, 0.2), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(0, 224, 255, 0.12), transparent 34%);
  border-radius: calc(var(--cta-radius) - 2px);
  pointer-events: none;
}



.filaneyka-cta__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.filaneyka-cta__eyebrow {
  color: var(--cta-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.filaneyka-cta__title {
  overflow: hidden;
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.filaneyka-cta__arrow {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #111318;
  background: var(--cta-accent);
  border-radius: 14px;
  transition: transform 220ms ease, background-color 220ms ease;
}

.filaneyka-cta__arrow .bi {
  font-size: 26px;
}

.filaneyka-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55), 0 0 14px rgb(137 137 137 / 20%), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.filaneyka-cta:hover .filaneyka-cta__arrow {
  transform: translate(3px, -3px) scale(1.05);
  background: #ffffff;
}

.filaneyka-cta:active {
  transform: translateY(-1px);
}

.filaneyka-cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

/* ------------------------------------------------------------
   Christmas card — burgundy with snow, sheen and bauble
   ------------------------------------------------------------ */

.filaneyka-xmas {
  --xmas-bg-1: #4e161b;
  --xmas-bg-2: #331013;
  --xmas-bg-3: #240a0c;
  --xmas-green: #008241;
  --xmas-red: #ea4444;
  --xmas-red-deep: #c92f2f;
  --xmas-paper: #f5f2ea;
  --xmas-radius: 28px;

  position: relative;
  isolation: isolate;

  display: flex;
  align-items: center;
  gap: 18px;

  width: 100%;
  max-width: 100%;
  min-height: 112px;
  box-sizing: border-box;

  margin: 24px 0;
  padding: 22px 24px;
  overflow: hidden;

  color: var(--xmas-paper);
  text-decoration: none;

  background: linear-gradient(140deg, var(--xmas-bg-1) 0%, var(--xmas-bg-2) 55%, var(--xmas-bg-3) 100%);
  border: 2px solid rgba(245, 242, 234, 0.45);
  border-radius: var(--xmas-radius);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);

  font-family: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.filaneyka-xmas::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  background:
    radial-gradient(circle at 86% 12%, rgba(234, 68, 68, 0.2), transparent 34%),
    radial-gradient(circle at 8% 100%, rgba(0, 130, 65, 0.22), transparent 36%);
  border-radius: calc(var(--xmas-radius) - 2px);
  pointer-events: none;
}

.filaneyka-xmas__snow {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.filaneyka-xmas__snow i {
  position: absolute;
  top: -6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--xmas-paper);
  opacity: 0;
  animation: filaneyka-xmas-fall 6s linear infinite;
}

.filaneyka-xmas__snow i:nth-child(1) { left: 5%;  animation-delay: -1.2s; animation-duration: 6.4s; }
.filaneyka-xmas__snow i:nth-child(2) { left: 18%; animation-delay: -3.1s; animation-duration: 7.2s; width: 2px; height: 2px; }
.filaneyka-xmas__snow i:nth-child(3) { left: 30%; animation-delay: -0.4s; animation-duration: 5.6s; }
.filaneyka-xmas__snow i:nth-child(4) { left: 42%; animation-delay: -4.6s; animation-duration: 6.9s; width: 4px; height: 4px; }
.filaneyka-xmas__snow i:nth-child(5) { left: 55%; animation-delay: -2.2s; animation-duration: 6.1s; }
.filaneyka-xmas__snow i:nth-child(6) { left: 67%; animation-delay: -5.4s; animation-duration: 7.6s; width: 2px; height: 2px; }
.filaneyka-xmas__snow i:nth-child(7) { left: 78%; animation-delay: -1.8s; animation-duration: 5.9s; }
.filaneyka-xmas__snow i:nth-child(8) { left: 88%; animation-delay: -3.9s; animation-duration: 6.6s; width: 4px; height: 4px; }
.filaneyka-xmas__snow i:nth-child(9) { left: 95%; animation-delay: -0.9s; animation-duration: 7.1s; }

.filaneyka-xmas__sheen {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.13) 50%, transparent 58%);
  background-size: 250% 100%;
  animation: filaneyka-xmas-sheen 5s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.filaneyka-xmas__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.filaneyka-xmas__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--xmas-paper);
  background: var(--xmas-red-deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.filaneyka-xmas__title {
  overflow: hidden;
  color: var(--xmas-paper);
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.filaneyka-xmas__bauble {
  position: relative;
  z-index: 2;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-sizing: border-box;
  background: radial-gradient(circle at 32% 28%, #ff9a9a 0%, var(--xmas-red) 42%, #6f1515 92%);
  box-shadow:
    inset -4px -6px 12px rgba(0, 0, 0, 0.4),
    0 6px 16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(245, 242, 234, 0.18);
}

.filaneyka-xmas__bauble::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 11px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--xmas-paper), #cfcaba);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.filaneyka-xmas__bauble::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  width: 14px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(1.5px);
  transform: rotate(-24deg);
}

.filaneyka-xmas:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55), 0 0 14px rgb(137 137 137 / 20%), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.filaneyka-xmas:hover .filaneyka-xmas__bauble {
  transform-origin: 50% -8px;
  animation: filaneyka-xmas-swing 1.6s ease-in-out infinite;
}

.filaneyka-xmas:active {
  transform: translateY(-1px);
}

.filaneyka-xmas:focus-visible {
  outline: 3px solid var(--xmas-paper);
  outline-offset: 4px;
}

@keyframes filaneyka-xmas-fall {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 0.8; }
  35%  { transform: translate3d(-9px, 45px, 0); }
  65%  { transform: translate3d(8px, 90px, 0); }
  85%  { opacity: 0.6; }
  100% { transform: translate3d(14px, 130px, 0); opacity: 0; }
}

@keyframes filaneyka-xmas-sheen {
  0%   { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}

@keyframes filaneyka-xmas-swing {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(10deg); }
  45%  { transform: rotate(-8deg); }
  70%  { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

/* ------------------------------------------------------------
   Feature cards — frosted glass with photo on the left
   ------------------------------------------------------------ */

.order_1 { order: 1; }
.order_2 { order: 2; }

.filaneyka-feature-card {
  --filaneyka-card-bg: rgba(255, 255, 255, 0.62);
  --filaneyka-card-text: #373e48;
  --filaneyka-card-muted: #656a72;
  --filaneyka-card-accent: #373e48;
  --filaneyka-card-radius: 28px;

  display: flex;
  align-items: stretch;

  width: 100%;
  min-height: 150px;
  margin: 24px 0;
  overflow: hidden;

  color: var(--filaneyka-card-text);
  text-decoration: none;
  background: var(--filaneyka-card-bg);
  border: 0 solid transparent;
  border-radius: var(--filaneyka-card-radius);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

  transition: transform 170ms ease-out, background 220ms ease, box-shadow 220ms ease;
}

.filaneyka-feature-card__image {
  position: relative;
  flex: 0 0 32%;
  min-width: 0;
  overflow: hidden;
  background: #d7d0d0;
}

.filaneyka-feature-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.filaneyka-feature-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  object-position: center;
  transition: transform 350ms ease;
}

.filaneyka-feature-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px 26px;
}

.filaneyka-feature-card__title {
  display: block;
  margin: 0 0 9px;
  color: var(--filaneyka-card-text);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 700;
  line-height: 1.25;
}

.filaneyka-feature-card__description {
  display: block;
  max-width: 360px;
  margin: 0 0 14px;
  color: var(--filaneyka-card-muted);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 300;
  line-height: 1.55;
}

.filaneyka-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--filaneyka-card-accent);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.filaneyka-feature-card__link span {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transition: transform 220ms ease;
}

.filaneyka-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.filaneyka-feature-card:hover .filaneyka-feature-card__image img {
  transform: scale(1.06);
}

.filaneyka-feature-card:hover .filaneyka-feature-card__link span {
  transform: translate(3px, -3px);
}

.filaneyka-feature-card:focus-visible {
  outline: 3px solid #373e48;
  outline-offset: 4px;
}

/* ------------------------------------------------------------
   Lead magnet form — warm "gift" card, stands out from the
   frosted white cards and reads as a freebie, not another link
   ------------------------------------------------------------ */

.fila-guide {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 28px auto;
  padding: 26px 24px 20px;
  text-align: center;
  background: linear-gradient(165deg, #fff8ec 0%, #ffeed7 52%, #ffe6c8 100%);
  border: 1.5px solid rgba(196, 141, 48, 0.28);
  border-radius: 28px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  color: #3f3421;
  font-family: 'Noto Sans', Arial, sans-serif;
  transition: transform 170ms ease-out, box-shadow 220ms ease;
}

/* soft golden glows in the corners */
.fila-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 200, 90, 0.35), transparent 34%),
    radial-gradient(circle at 6% 96%, rgba(255, 176, 120, 0.22), transparent 38%);
  pointer-events: none;
}

.fila-guide > * {
  position: relative;
}

.fila-guide:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.fila-guide__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: #3f3421;
  color: #ffdf9e;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fila-guide__badge .bi {
  font-size: 12px;
}

.fila-guide__title {
  margin: 0 0 8px;
  color: #3a3020;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}

.fila-guide__sub {
  max-width: 380px;
  margin: 0 auto 16px;
  color: #75644a;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
}

.fila-guide__form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* Honeypot: invisible to humans, but rendered — dumb spam bots
   fill it and get silently dropped by the n8n workflow */
.fila-guide__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.fila-guide__input {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(143, 108, 41, 0.25);
  border-radius: 14px;
  color: #3f3421;
  font-family: inherit;
  font-size: 14px;
  text-align: center;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.fila-guide__input:focus {
  border-color: #a3762a;
  box-shadow: 0 0 0 3px rgba(163, 118, 42, 0.16);
}

.fila-guide__input::placeholder {
  color: #a08a63;
}

.fila-guide__submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #4a3c22, #332a18);
  border: 0;
  border-radius: 14px;
  color: #ffe9c4;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 170ms ease-out, box-shadow 220ms ease, filter 200ms ease;
}

.fila-guide__submit:hover {
  filter: brightness(1.18);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.fila-guide__submit:active {
  transform: translateY(0) scale(0.98);
}

.fila-guide__submit:focus-visible {
  outline: 3px solid #4a3c22;
  outline-offset: 3px;
}

.fila-guide__consent {
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  color: #8a7855;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 300;
}

/* Custom checkbox: system checkboxes look inconsistent (and dated on
   Windows), so the native one is replaced with a styled box + clip-path
   checkmark that follows each .fila-guide color variant */
.fila-guide__consent input {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1.5px solid rgba(143, 108, 41, 0.45);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: background 160ms ease, border-color 160ms ease;
}

.fila-guide__consent input::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ffe9c4;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transition: transform 120ms ease-in-out;
}

.fila-guide__consent input:hover {
  border-color: #a3762a;
}

.fila-guide__consent input:checked {
  background: #4a3c22;
  border-color: #4a3c22;
}

.fila-guide__consent input:checked::before {
  transform: scale(1);
}

.fila-guide__consent input:focus-visible {
  outline: 2px solid #a3762a;
  outline-offset: 2px;
}

.fila-guide__note {
  margin: 12px 0 0;
  color: #9a8763;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
}

.fila-guide__note .bi {
  font-size: 12px;
  vertical-align: -0.12em;
  margin-right: 4px;
}

/* ------------------------------------------------------------
   Color variants (temporary — deciding which one to keep)
   ------------------------------------------------------------ */

.variant-caption {
  margin: 30px 0 4px;
  text-align: center;
  color: #4a5160;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* 4 · Dark slate */
.fila-guide.v-dark { background: linear-gradient(165deg, #1c212b 0%, #171c25 55%, #131820 100%); border: 2px solid rgba(255, 255, 255, 0.16); }
.fila-guide.v-dark::before { background: radial-gradient(circle at 88% 8%, rgba(217, 255, 69, 0.14), transparent 34%), radial-gradient(circle at 6% 96%, rgba(0, 224, 255, 0.10), transparent 38%); }
.fila-guide.v-dark .fila-guide__badge { background: #d9ff45; color: #1c212b; }
.fila-guide.v-dark .fila-guide__title { color: #ffffff; }
.fila-guide.v-dark .fila-guide__sub { color: #aeb4c2; }
.fila-guide.v-dark .fila-guide__input { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); color: #ffffff; }
.fila-guide.v-dark .fila-guide__input:focus { border-color: #d9ff45; box-shadow: 0 0 0 3px rgba(217, 255, 69, 0.15); }
.fila-guide.v-dark .fila-guide__input::placeholder { color: #7d8494; }
.fila-guide.v-dark .fila-guide__submit { background: #d9ff45; color: #1c212b; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35); }
.fila-guide.v-dark .fila-guide__submit:hover { filter: brightness(1.05); }
.fila-guide.v-dark .fila-guide__consent { color: #8b93a3; }
.fila-guide.v-dark .fila-guide__consent input { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.35); }
.fila-guide.v-dark .fila-guide__consent input:hover { border-color: rgba(255, 255, 255, 0.55); }
.fila-guide.v-dark .fila-guide__consent input::before { background: #1c212b; }
.fila-guide.v-dark .fila-guide__consent input:checked { background: #d9ff45; border-color: #d9ff45; }
.fila-guide.v-dark .fila-guide__consent input:focus-visible { outline-color: #d9ff45; }
.fila-guide.v-dark .fila-guide__note { color: #767e8e; }

/* 5 · Frost (matches the frosted photo cards) */
.fila-guide.v-frost { background: rgba(255, 255, 255, 0.62); border-color: rgba(255, 255, 255, 0.65); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.fila-guide.v-frost::before { background: none; }
.fila-guide.v-frost .fila-guide__badge { background: #373e48; color: #ffffff; }
.fila-guide.v-frost .fila-guide__title { color: #373e48; }
.fila-guide.v-frost .fila-guide__sub { color: #656a72; }
.fila-guide.v-frost .fila-guide__input { background: rgba(255, 255, 255, 0.8); border-color: rgba(55, 62, 72, 0.18); }
.fila-guide.v-frost .fila-guide__input:focus { border-color: #373e48; box-shadow: 0 0 0 3px rgba(55, 62, 72, 0.12); }
.fila-guide.v-frost .fila-guide__input::placeholder { color: #656a72; }
.fila-guide.v-frost .fila-guide__submit { background: #373e48; color: #ffffff; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14); }
.fila-guide.v-frost .fila-guide__submit:hover { filter: none; background: #2b313a; }
.fila-guide.v-frost .fila-guide__consent { color: #656a72; }
.fila-guide.v-frost .fila-guide__consent input { background: rgba(255, 255, 255, 0.8); border-color: rgba(55, 62, 72, 0.35); }
.fila-guide.v-frost .fila-guide__consent input::before { background: #ffffff; }
.fila-guide.v-frost .fila-guide__consent input:checked { background: #373e48; border-color: #373e48; }
.fila-guide.v-frost .fila-guide__note { color: #8a8f98; }

/* ------------------------------------------------------------
   Small screens
   ------------------------------------------------------------ */

@media (max-width: 420px) {
  .filaneyka-cta {
    min-height: 100px;
    padding: 18px;
    gap: 12px;
  }

  .filaneyka-cta__title { font-size: 18px; }


  .filaneyka-cta__arrow {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .filaneyka-cta__arrow .bi {
    font-size: 22px;
  }

  .filaneyka-xmas {
    min-height: 104px;
    padding: 20px 18px;
    gap: 12px;
  }

  .filaneyka-xmas__eyebrow {
    font-size: 9.5px;
    padding: 3px 9px;
  }

  .filaneyka-xmas__title { font-size: 18px; }

  .filaneyka-xmas__bauble {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .filaneyka-xmas__bauble::before {
    top: -7px;
    width: 13px;
    height: 9px;
  }

  .filaneyka-feature-card {
    min-height: 126px;
    border-radius: 22px;
  }

  .filaneyka-feature-card__image { flex-basis: 34%; }

  .filaneyka-feature-card__image img { min-height: 126px; }

  .filaneyka-feature-card__content {
    padding: 18px 17px;
  }

  .filaneyka-feature-card__title {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .filaneyka-feature-card__description {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .filaneyka-feature-card__link { font-size: 11px; }

  .fila-guide {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }
}

/* ------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  .rise-in,
  .profile-hero img,
  .filaneyka-cta,
  .sharebutton:hover .share-icon {
    animation: none;
  }

  .reveal {
    opacity: 1;
  }

  .reveal.is-visible {
    animation: none;
  }

  .filaneyka-cta, .filaneyka-cta *, .filaneyka-cta::before, .filaneyka-cta::after,
  .filaneyka-xmas, .filaneyka-xmas *, .filaneyka-xmas::before, .filaneyka-xmas::after,
  .filaneyka-feature-card, .filaneyka-feature-card *,
  .fila-guide, .fila-guide *, .fila-guide__submit,
  .fila-guide__consent input::before {
    transition: none;
  }

  .filaneyka-xmas, .filaneyka-xmas *, .filaneyka-xmas::before, .filaneyka-xmas::after {
    animation: none;
  }
}
