/* ============================================================
   FIKY HOME WIDGET — Scoped Stylesheet
   All rules scope under .fv-home so Elementor cannot leak in
   and this widget cannot leak out.
   ============================================================ */

/* ── Defensive: kill Elementor's section padding so the widget bleeds full-width ── */
.elementor-widget-fiky_home > .elementor-widget-container { padding: 0 !important; }

/* ── Default CSS vars on the widget wrapper. Per-instance values override via inline <style>. ── */
.fv-home {
  --fv-bg:       #F8F5EF;
  --fv-bg2:      #F0EBE1;
  --fv-white:    #FDFCF9;
  --fv-dark:     #1C1B19;
  --fv-charcoal: #2E2D2B;
  --fv-terra:    #54725A;
  --fv-terra-dk: #3F5A45;
  --fv-sage:     #54725A;
  --fv-sage-lt:  #8DAA92;
  --fv-stone:    #C4B9A8;
  --fv-muted:    #7A7166;
  --fv-warm:     #E8DFD0;
  --fv-ease:     cubic-bezier(.25,.46,.45,.94);
  --fv-spring:   cubic-bezier(.16,1,.3,1);
  --fv-disp:     "EB Garamond", Georgia, serif;
  --fv-body:     "Outfit", sans-serif;
}

/* ── Scoped reset (no global *, body, html, img, a, etc.) ── */
.fv-home, .fv-home *, .fv-home *::before, .fv-home *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.fv-home {
  font-family: var(--fv-body);
  background: var(--fv-bg);
  color: var(--fv-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Prevent Elementor cream-strip bleed under sections */
  position: relative;
}
.fv-home img { max-width: 100%; height: auto; display: block; }
.fv-home a { text-decoration: none; color: inherit; }
.fv-home ul, .fv-home ol { list-style: none; }
.fv-home button { font-family: inherit; cursor: pointer; }

/* ── Reveal ── */
.fv-home .fvr { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--fv-spring), transform .9s var(--fv-spring); }
.fv-home .fvr.on { opacity: 1; transform: none; }
.fv-home .fvr.d1 { transition-delay: .1s; }
.fv-home .fvr.d2 { transition-delay: .2s; }
.fv-home .fvr.d3 { transition-delay: .3s; }
.fv-home .fvr.d4 { transition-delay: .4s; }

/* ── Shared utilities ── */
.fv-home .fv-eyebrow {
  font-family: var(--fv-body); font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--fv-terra);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.fv-home .fv-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--fv-terra); flex-shrink: 0; }
.fv-home .fv-eyebrow.light { color: rgba(255,255,255,.7); }
.fv-home .fv-eyebrow.light::before { background: rgba(255,255,255,.4); }
.fv-home .fv-eyebrow.sage { color: var(--fv-sage-lt); }
.fv-home .fv-eyebrow.sage::before { background: var(--fv-sage-lt); }

.fv-home .fv-h2 {
  font-family: var(--fv-disp); font-weight: 500;
  font-size: clamp(34px, 4.5vw, 60px); line-height: 1.1;
  color: var(--fv-dark); margin-bottom: 22px;
}
.fv-home .fv-h2 em { font-style: italic; }
.fv-home .fv-h2.wh { color: #fff; }

.fv-home .fv-btn-terra,
.fv-home .fv-btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fv-body); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; padding: 15px 34px; text-decoration: none;
  transition: background .3s, transform .2s, gap .3s; white-space: nowrap;
}
.fv-home .fv-btn-terra { background: var(--fv-terra); }
.fv-home .fv-btn-terra:hover { background: var(--fv-terra-dk); transform: translateY(-2px); gap: 16px; }
.fv-home .fv-btn-dark { background: var(--fv-dark); }
.fv-home .fv-btn-dark:hover { background: var(--fv-charcoal); transform: translateY(-2px); gap: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.fv-home .fv-hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto;
  overflow: hidden; row-gap: 0;
}
.fv-home .fv-hero-bg {
  position: absolute; inset: 0;
  background-position: center 25%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: fv-zoom 10s var(--fv-spring) forwards;
}
@keyframes fv-zoom { to { transform: scale(1); } }
.fv-home .fv-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(170deg,
    rgba(28,27,25,.12) 0%,
    rgba(28,27,25,.3) 40%,
    rgba(28,27,25,.78) 100%);
}
.fv-home .fv-hero-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 28px 60px;
}
.fv-home .fv-hero h1 {
  font-family: var(--fv-disp); font-weight: 500;
  font-size: clamp(44px, 7.5vw, 104px);
  line-height: 1.04; letter-spacing: -.02em;
  color: #fff; max-width: 900px; margin-bottom: 28px;
  text-shadow: 0 4px 32px rgba(0,0,0,.25);
  opacity: 0; transform: translateY(24px);
  animation: fv-up 1.1s var(--fv-spring) .4s forwards;
}
.fv-home .fv-hero h1 em { font-style: italic; color: rgba(255,255,255,.88); }
.fv-home .fv-hero-sub {
  font-family: var(--fv-body); font-size: 15px; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,.72);
  max-width: 520px; margin-bottom: 44px;
  opacity: 0; transform: translateY(16px);
  animation: fv-up .9s var(--fv-spring) .65s forwards;
}
.fv-home .fv-hero-btns {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  opacity: 0; transform: translateY(16px);
  animation: fv-up .9s var(--fv-spring) .85s forwards;
}
.fv-home .fv-hero-bar {
  position: relative; z-index: 2;
  background: var(--fv-terra);
  min-height: 48px;
}
.fv-home .fv-scroll-cue {
  position: absolute; bottom: 80px; right: 28px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fv-fade .8s var(--fv-spring) 1.5s forwards;
}
.fv-home .fv-scroll-cue span {
  font-family: var(--fv-body); font-size: 9px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.35); writing-mode: vertical-rl;
}
.fv-home .fv-scroll-mouse {
  width: 20px; height: 32px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 5px;
}
.fv-home .fv-scroll-mouse::after {
  content: ""; width: 3px; height: 6px; background: var(--fv-terra);
  border-radius: 2px; animation: fv-scroll 2s ease-in-out 2s infinite;
}
@keyframes fv-scroll { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0; } }

@media (min-width: 640px)  { .fv-home .fv-hero-body { padding: 140px 52px 72px; } .fv-home .fv-scroll-cue { right: 52px; } .fv-home .fv-hero-bar { min-height: 56px; } }
@media (min-width: 1024px) { .fv-home .fv-hero-body { padding: 160px 80px 88px; } .fv-home .fv-scroll-cue { right: 80px; bottom: 120px; } .fv-home .fv-hero-bar { min-height: 64px; } }
@media (max-width: 480px)  {
  .fv-home .fv-hero-btns { flex-direction: column; align-items: flex-start; }
  .fv-home .fv-scroll-cue { display: none; }
  .fv-home .fv-hero h1 { font-size: clamp(38px, 10vw, 60px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.fv-home .fv-about { background: var(--fv-bg); padding: 72px 28px 100px; }
.fv-home .fv-about-inner { max-width: 1300px; margin: 0 auto; }
.fv-home .fv-about-quote {
  font-family: var(--fv-disp); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 3.2vw, 40px); line-height: 1.35;
  color: var(--fv-charcoal); letter-spacing: -.01em;
  border-left: 3px solid var(--fv-terra); padding-left: 28px;
  margin-bottom: 64px;
}
.fv-home .fv-about-cols {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start;
}
.fv-home .fv-about-img-col { position: relative; }
.fv-home .fv-about-img-stack { position: relative; padding-bottom: 60px; }
.fv-home .fv-about-img-main {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: center 70%;
  display: block; box-shadow: 20px 20px 60px rgba(0,0,0,.12);
}
.fv-home .fv-about-img-sm {
  position: absolute; bottom: 0; right: -8px;
  width: 52%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--fv-bg);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.fv-home .fv-about-text-col { padding-top: 12px; }
.fv-home .fv-about-body {
  font-family: var(--fv-body); font-size: 15px; font-weight: 300;
  line-height: 1.9; color: var(--fv-muted); margin-bottom: 24px;
}
.fv-home .fv-about-body + .fv-about-body { margin-bottom: 40px; }

.fv-home .fv-about-keys { display: flex; flex-direction: column; gap: 16px; margin-bottom: 0; }
.fv-home .fv-akey {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  background: rgba(141,170,146,.10);
  border-left: 3px solid var(--fv-sage-lt);
  transition: background .3s, border-left-color .3s;
}
.fv-home .fv-akey:hover { background: rgba(141,170,146,.18); border-left-color: var(--fv-terra); }
.fv-home .fv-akey-num {
  font-family: var(--fv-disp); font-size: 12px;
  color: var(--fv-sage-lt); font-weight: 600;
  flex-shrink: 0; padding-top: 3px;
}
.fv-home .fv-akey-t {
  font-family: var(--fv-body); font-size: 12px; font-weight: 600;
  color: var(--fv-sage-lt); letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 4px;
}
.fv-home .fv-akey-p {
  font-family: var(--fv-body); font-size: 13px; font-weight: 300;
  line-height: 1.65; color: var(--fv-muted);
}

@media (min-width: 640px)  { .fv-home .fv-about { padding: 80px 48px 110px; } }
@media (min-width: 960px)  {
  .fv-home .fv-about { padding: 96px 80px 130px; }
  .fv-home .fv-about-cols { grid-template-columns: 1fr 1.1fr; gap: 96px; }
  .fv-home .fv-about-img-sm { right: -28px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.fv-home .fv-services { background: var(--fv-charcoal); padding: 80px 28px; }
.fv-home .fv-services-inner { max-width: 1300px; margin: 0 auto; }
.fv-home .fv-serv-top {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 64px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.fv-home .fv-serv-top-sub {
  font-family: var(--fv-body); font-size: 14px; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,.45); max-width: 500px;
}
.fv-home .fv-serv-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.fv-home .fv-scard {
  background: rgba(255,255,255,.06);
  display: grid; grid-template-columns: 1fr;
  overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,.06);
  transition: background .4s;
}
.fv-home .fv-scard:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.1); }
.fv-home .fv-scard::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--fv-terra);
  transition: width .4s var(--fv-ease);
}
.fv-home .fv-scard:hover::before { width: 3px; }
.fv-home .fv-scard-inner {
  padding: 32px 28px; display: flex; align-items: flex-start; gap: 24px;
}
.fv-home .fv-scard-num {
  font-family: var(--fv-disp); font-size: 48px; font-weight: 700;
  color: rgba(255,255,255,.1); line-height: 1; flex-shrink: 0;
  letter-spacing: -.03em; transition: color .4s;
}
.fv-home .fv-scard:hover .fv-scard-num { color: var(--fv-terra); }
.fv-home .fv-scard-body { flex: 1; }
.fv-home .fv-scard-h {
  font-family: var(--fv-disp); font-size: clamp(22px, 3vw, 30px);
  font-weight: 500; color: #fff; margin-bottom: 12px; line-height: 1.15;
}
.fv-home .fv-scard-p {
  font-family: var(--fv-body); font-size: 14px; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,.6);
}
.fv-home .fv-scard-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fv-body); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--fv-terra); text-decoration: none;
  margin-top: 20px; opacity: .55;
  transition: opacity .3s, gap .3s;
}
.fv-home .fv-scard:hover .fv-scard-link { opacity: 1; gap: 14px; }
.fv-home .fv-scard-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }

@media (min-width: 640px)  { .fv-home .fv-services { padding: 96px 48px; } .fv-home .fv-scard-inner { padding: 40px 36px; gap: 32px; } }
@media (min-width: 860px)  { .fv-home .fv-serv-grid { grid-template-columns: 1fr 1fr; gap: 2px; } .fv-home .fv-serv-top { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
@media (min-width: 1100px) { .fv-home .fv-services { padding: 110px 80px; } }

/* ============================================================
   FULL BLEED
   ============================================================ */
.fv-home .fv-fullbleed {
  position: relative; min-height: 50vw; max-height: 580px;
  overflow: hidden; display: flex;
}
.fv-home .fv-fb-img {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.fv-home .fv-fb-ov {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,27,25,.82) 0%, rgba(28,27,25,.4) 60%, rgba(28,27,25,.1) 100%);
}
.fv-home .fv-fb-content {
  position: relative; z-index: 2; width: 100%;
  padding: 64px 28px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
}
.fv-home .fv-fb-qt {
  font-family: var(--fv-disp); font-size: clamp(26px, 4vw, 52px);
  font-weight: 400; font-style: italic; line-height: 1.25;
  color: #fff; letter-spacing: -.01em; margin-bottom: 24px;
}
.fv-home .fv-fb-rule { width: 48px; height: 2px; background: var(--fv-terra); margin-bottom: 20px; }
.fv-home .fv-fb-sub {
  font-family: var(--fv-body); font-size: 13px; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,.55); max-width: 400px;
}
@media (min-width: 640px)  { .fv-home .fv-fb-content { padding: 80px 52px; } }
@media (min-width: 1024px) { .fv-home .fv-fb-content { padding: 100px 80px; } }

/* ============================================================
   PROCESS
   ============================================================ */
.fv-home .fv-process { background: var(--fv-bg2); padding: 80px 28px; }
.fv-home .fv-proc-inner { max-width: 1300px; margin: 0 auto; }
.fv-home .fv-proc-head { margin-bottom: 72px; }
.fv-home .fv-proc-head-sub {
  font-family: var(--fv-body); font-size: 15px; font-weight: 300;
  line-height: 1.85; color: var(--fv-muted);
  max-width: 520px; margin-top: 12px;
}
.fv-home .fv-timeline { display: flex; flex-direction: column; gap: 0; }
.fv-home .fv-tline-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0 32px; position: relative;
}
.fv-home .fv-tline-item:not(:last-child)::after {
  content: ""; position: absolute;
  left: 27px; top: 56px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--fv-stone) 0%, transparent 100%);
}
.fv-home .fv-tline-left {
  display: flex; flex-direction: column; align-items: center; padding-top: 6px;
}
.fv-home .fv-tline-circle {
  width: 56px; height: 56px;
  border: 2px solid var(--fv-stone); background: var(--fv-bg2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fv-disp); font-size: 18px; font-weight: 600;
  color: var(--fv-dark); flex-shrink: 0; z-index: 1;
  transition: background .4s, border-color .4s, color .4s;
}
.fv-home .fv-tline-item:hover .fv-tline-circle {
  background: var(--fv-terra); border-color: var(--fv-terra); color: #fff;
}
.fv-home .fv-tline-content { padding: 4px 0 56px; }
.fv-home .fv-tline-item:last-child .fv-tline-content { padding-bottom: 0; }
.fv-home .fv-tline-t {
  font-family: var(--fv-disp); font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500; color: var(--fv-dark); margin-bottom: 12px; line-height: 1.2;
}
.fv-home .fv-tline-p {
  font-family: var(--fv-body); font-size: 14px; font-weight: 300;
  line-height: 1.85; color: var(--fv-muted);
}
@media (min-width: 640px)  { .fv-home .fv-process { padding: 96px 48px; } }
@media (min-width: 860px)  {
  .fv-home .fv-process { padding: 130px 80px; }
  .fv-home .fv-timeline { flex-direction: row; gap: 0; }
  .fv-home .fv-tline-item { grid-template-columns: 1fr; grid-template-rows: 56px 1fr; gap: 24px 0; }
  .fv-home .fv-tline-item:not(:last-child)::after {
    left: 55px; top: 27px; bottom: auto;
    width: calc(100% - 28px); height: 2px;
    background: linear-gradient(to right, var(--fv-stone) 0%, transparent 100%);
  }
  .fv-home .fv-tline-left { flex-direction: row; align-items: flex-start; justify-content: flex-start; padding-top: 0; }
  .fv-home .fv-tline-content { padding: 0 36px 0 0; }
  .fv-home .fv-tline-item:last-child .fv-tline-content { padding-right: 0; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.fv-home .fv-gallery {
  display: grid; gap: 3px; padding: 3px;
  background: var(--fv-dark);
  grid-template-columns: 1fr 1fr;
}
.fv-home .fv-gi { overflow: hidden; position: relative; cursor: pointer; }
.fv-home .fv-gi img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s var(--fv-spring), filter .4s;
  filter: brightness(.88) saturate(.9);
  aspect-ratio: 1;
}
.fv-home .fv-gi:hover img { transform: scale(1.07); filter: brightness(1) saturate(1); }
.fv-home .fv-gi::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(84,114,90,0); transition: background .4s;
}
.fv-home .fv-gi:hover::after { background: rgba(84,114,90,.12); }
/* Mobile (2-col): tall image left across 2 rows, others fill as squares */
.fv-home .fv-gi:first-child { grid-row: span 2; }
.fv-home .fv-gi:first-child img { aspect-ratio: auto; height: 100%; min-height: 360px; }

@media (min-width: 640px) {
  /* Desktop (3-col): tall left across 2 rows + 2x2 squares to its right */
  .fv-home .fv-gallery { grid-template-columns: 1.4fr 1fr 1fr; }
  .fv-home .fv-gi:first-child img { min-height: 520px; }
  .fv-home .fv-gi:not(:first-child) img { aspect-ratio: 4/3; }
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.fv-home .fv-cta {
  background: var(--fv-dark); padding: 80px 28px;
  position: relative; overflow: hidden;
}
.fv-home .fv-cta::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--fv-terra);
}
.fv-home .fv-cta-inner {
  max-width: 1300px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 52px; align-items: start;
}
.fv-home .fv-cta-h {
  font-family: var(--fv-disp); font-weight: 500;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1; letter-spacing: -.025em;
  color: #fff; margin-bottom: 20px;
}
.fv-home .fv-cta-h em { font-style: italic; color: var(--fv-terra); }
.fv-home .fv-cta-p {
  font-family: var(--fv-body); font-size: 15px; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,.52); margin-bottom: 40px;
}
.fv-home .fv-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.fv-home .fv-cta-dets {
  display: flex; flex-direction: column; gap: 16px; margin-top: 48px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.07);
}
.fv-home .fv-cta-det {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--fv-body); font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.45);
}
.fv-home .fv-cta-det-icon {
  width: 32px; height: 32px; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fv-home .fv-cta-det-icon svg {
  width: 13px; height: 13px; stroke: var(--fv-terra); fill: none; stroke-width: 1.5;
}
.fv-home .fv-cta-det a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .3s; }
.fv-home .fv-cta-det a:hover { color: var(--fv-terra); }
@media (min-width: 640px)  { .fv-home .fv-cta { padding: 96px 52px; } }
@media (min-width: 900px)  { .fv-home .fv-cta { padding: 110px 80px; } .fv-home .fv-cta-inner { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

/* ============================================================
   CLOSING TAGLINE BAND
   ============================================================ */
.fv-home .fv-closing {
  background: var(--fv-terra);
  padding: 80px 28px; text-align: center;
  position: relative; overflow: hidden;
}
.fv-home .fv-closing::before,
.fv-home .fv-closing::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px; background: var(--fv-charcoal); opacity: .5;
}
.fv-home .fv-closing::before { top: 48px; }
.fv-home .fv-closing::after { bottom: 48px; }
.fv-home .fv-closing-eyebrow {
  font-family: var(--fv-body); font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--fv-charcoal); margin-bottom: 24px; display: block; opacity: .75;
}
.fv-home .fv-closing-h {
  font-family: var(--fv-disp); font-weight: 500;
  font-size: clamp(28px, 4.8vw, 56px); line-height: 1.15;
  color: var(--fv-charcoal); letter-spacing: -.015em;
  max-width: 900px; margin: 0 auto;
}
.fv-home .fv-closing-h em { font-style: italic; }
@media (min-width: 640px)  { .fv-home .fv-closing { padding: 100px 52px; } }
@media (min-width: 1024px) { .fv-home .fv-closing { padding: 120px 80px; } }

/* ============================================================
   ANIMATIONS (prefixed so they don't collide)
   ============================================================ */
@keyframes fv-up   { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fv-fade { from { opacity: 0; } to { opacity: 1; } }
