:root {
  --g1: #c5a059;
  --g2: #d4af37;
  --g3: #e6c27a;
  --g4: #f3e5ab;
  --g5: #ffdf73;

  --ch: #1a1a1a;
  --ch2: #2c2c2c;

  --iv: #fcfbf8;
  --iv2: #f5f0e6;
  --iv3: #eee8dc;
  --iv4: #e6dfd0;

  --tx: #555555;
  --tx2: #777777;

  --ln: rgba(0, 0, 0, 0.08);
  --ln2: rgba(0, 0, 0, 0.15);

  --sh: rgba(0, 0, 0, 0.15);
  --sh2: rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--iv);
  color: var(--tx);
  overflow-x: hidden;
}

/* utils */
.gt {
    background: linear-gradient(135deg, var(--g1) 0%, var(--g3) 35%, var(--g5) 55%, var(--g4) 75%, var(--g2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gl {
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--g3), transparent);
    margin: 0 auto;
}
.eb {
    font-size: 0.61rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--g2);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.eb::before, .eb::after {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--g3);
}
.sh {
    text-align: center;
    padding: 0 24px 44px;
}
.sh h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.95rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--ch);
}
.sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ln2), transparent);
    margin: 0 10%;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 248, 244, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--ln);
    box-shadow: 0 2px 20px var(--sh2);
}
.nb {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.96rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--g1), var(--g3), var(--g5), var(--g3));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
.nr {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* lang */
.lw { position: relative; }
.lb {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--iv2);
    border: 1px solid var(--g3);
    color: var(--g2);
    cursor: pointer;
    padding: 6px 9px;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: 0.2s, border-color 0.2s;
}
.lb svg.cv { transition: 0.22s; }
.lb.op svg.cv { transform: rotate(180deg); }
.ld {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--iv);
    border: 1px solid var(--ln2);
    box-shadow: 0 8px 28px var(--sh2);
    min-width: 136px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 2px;
    z-index: 300;
    display: none;
}
.ld.op { display: flex; }
.lo {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--tx);
    cursor: pointer;
    border-bottom: 1px solid var(--ln);
    text-transform: uppercase;
    font-weight: 400;
    background: var(--iv2);
    font-family: 'Jost', sans-serif;
    transition: 0.15s, color 0.15s;
}
.lo.ac {
    color: var(--g1);
    background: var(--iv3);
    font-weight: 500;
}
.nwa {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--g1), var(--g3));
    color: var(--iv);
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 2px;
    transition: 0.2s, box-shadow 0.2s;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--sh);
}

/* btns */
.bg {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--g1), var(--g3));
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.73rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.25s, box-shadow 0.25s;
    border: none;
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px var(--sh);
}
.bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--g2), var(--g4));
    opacity: 0;
    transition: 0.3s;
}
.bg:hover::after { opacity: 1; }
.bg > * { position: relative; z-index: 1; }
.bo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: transparent;
    color: var(--g1);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.73rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 30px;
    border: 1px solid var(--g1);
    transition: 0.25s, color 0.25s, background 0.25s;
}
.bo:hover {
    background: var(--g1);
    color: #fff;
}

/* HERO */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 106px 24px 84px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(168deg, var(--iv4) 0%, var(--iv) 42%, var(--iv2) 100%);
}
#hero::after {
    content: '';
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(212,169,64,.11) 0%, transparent 68%);
    pointer-events: none;
}
.oh {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--g3) 50%, transparent 95%);
    opacity: 0.36;
}
.oh.t { top: 68px; }
.oh.b { bottom: 68px; }
.ov {
    position: absolute;
    top: 68px;
    bottom: 68px;
    width: 1px;
    background: linear-gradient(180deg, transparent 5%, var(--g3) 50%, transparent 95%);
    opacity: 0.36;
}
.ov.l { left: 16px; }
.ov.r { right: 16px; }
.cn {
    position: absolute;
    width: 18px;
    height: 18px;
    opacity: 0.48;
}
.cn.tl { top: 62px; left: 10px; border-top: 1.3px solid var(--g3); border-left: 1.3px solid var(--g3); }
.cn.tr { top: 62px; right: 10px; border-top: 1.3px solid var(--g3); border-right: 1.3px solid var(--g3); }
.cn.bl { bottom: 62px; left: 10px; border-bottom: 1.3px solid var(--g3); border-left: 1.3px solid var(--g3); }
.cn.br { bottom: 62px; right: 10px; border-bottom: 1.3px solid var(--g3); border-right: 1.3px solid var(--g3); }
.dc {
    position: absolute;
    border: 1px solid var(--g3);
    transform: rotate(45deg);
}
.dc1 { width: 72px; height: 72px; top: 84px; left: 8px; opacity: 0.1; }
.dc2 { width: 38px; height: 38px; top: 100px; right: 10px; opacity: 0.14; }
.dc3 { width: 56px; height: 56px; bottom: 82px; right: 6px; opacity: 0.11; }
.lm {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    animation: fadeIn 0.85s ease both;
}
.lm img {
    width: 200px;
    max-width: 80vw;
    filter: drop-shadow(0 2px 16px rgba(140,104,32,.2));
    border-radius: 8px;
}
.hov {
    font-size: 0.56rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--g2);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.85s 0.14s ease both;
}
.hov::before, .hov::after { content: '◆'; font-size: 0.46rem; color: var(--g3); opacity: 0.65; }
h1.hh {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.55rem;
    font-weight: 300;
    line-height: 1.17;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.85s 0.27s ease both;
    color: var(--ch);
}
h1.hh em { font-style: italic; font-weight: 300; }
.hp {
    font-size: 0.77rem;
    color: var(--tx);
    line-height: 2;
    letter-spacing: 0.04em;
    max-width: 280px;
    margin: 0 auto 34px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.85s 0.4s ease both;
}
.hb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.85s 0.52s ease both;
}
.sc {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.56rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--g3);
    animation: fadeIn 1s 1.2s ease both;
}
.sc i {
    display: block;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--g3), transparent);
    animation: sdrop 2s ease-in-out infinite;
}

/* MARQUEE */
.ms { background: linear-gradient(135deg, var(--g1), var(--g2)); overflow: hidden; padding: 11px 0; }
.mt { display: flex; animation: mq 24s linear infinite; white-space: nowrap; }
.mi {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.mi::after { content: '◆'; font-size: 0.52rem; opacity: 0.62; }

/* STATEMENT */
#stmt { padding: 78px 24px; text-align: center; background: var(--iv); position: relative; }
#stmt h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.95rem; font-weight: 300; line-height: 1.38; letter-spacing: 0.03em; margin-bottom: 20px; color: var(--ch); }
#stmt p { font-size: 0.78rem; color: var(--tx); line-height: 2; max-width: 330px; margin: 0 auto 32px; }

/* CATEGORIES */
#cats { padding: 72px 0; background: var(--iv2); position: relative; }
#cats::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 0; padding: 0 3px; }
.cat-card { position: relative; overflow: hidden; aspect-ratio: 3/4; text-decoration: none; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; display: block; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,23,16,0.78) 0%, rgba(28,23,16,0.15) 55%, transparent 100%); }
.cat-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; padding: 12px 10px 14px; text-align: center; }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 0.88rem; font-weight: 400; letter-spacing: 0.1em; color: #fff; text-transform: uppercase; line-height: 1.2; display: block; }
.cat-arrow { font-size: 0.55rem; letter-spacing: 0.15em; color: var(--g4); display: block; margin-top: 3px; }

/* PRODUCTS */
#prods { padding: 72px 0 80px; background: var(--iv); position: relative; }
#prods::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); }

/* filter tabs */
.ftabs { display: flex; overflow-x: auto; gap: 6px; padding: 0 16px 24px; scrollbar-width: none; }
.ftabs::-webkit-scrollbar { display: none; }
.ftab { flex-shrink: 0; padding: 7px 16px; border: 1px solid var(--ln2); background: transparent; font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tx2); cursor: pointer; border-radius: 2px; transition: 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
.ftab.ac { background: var(--g1); color: #fff; border-color: var(--g1); }
.ftab:hover:not(.ac) { background: var(--iv2); color: var(--g1); border-color: var(--g3); }

.pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 0 3px; }
.pc { background: var(--iv3); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: 0.25s; position: relative; overflow: hidden; }
.pc:hover { background: var(--iv2); }
.pc-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; position: relative; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.45s ease; }
.pc:hover .pc-img img { transform: scale(1.06); }
.pc-badge { position: absolute; top: 8px; left: 8px; background: linear-gradient(135deg, var(--g1), var(--g3)); color: #fff; font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; font-family: 'Jost', sans-serif; font-weight: 500; z-index: 2;}
.pc-body { padding: 12px 12px 14px; display: flex; flex-direction: column; flex: 1; }
.pc-cat { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g2); margin-bottom: 4px; }
.pc-name { font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; font-weight: 400; color: var(--ch2); line-height: 1.35; flex: 1; margin-bottom: 8px; }
.pc-price { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.pc-now { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; color: var(--g1); }
.pc-was { font-size: 0.7rem; color: var(--tx2); text-decoration: line-through; }
.pc-btn { display: flex; align-items: center; justify-content: center; gap: 7px; background: linear-gradient(135deg, var(--g1), var(--g3)); color: #fff; font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 12px; font-weight: 500; transition: 0.2s; text-decoration: none; position: relative; overflow: hidden; }
.pc-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--g2), var(--g4)); opacity: 0; transition: 0.3s; }
.pc-btn:hover::after { opacity: 1; }
.pc-btn > * { position: relative; z-index: 1; }

.see-all { text-align: center; margin-top: 28px; padding: 0 24px; }

/* DESIGNER */
#designer { padding: 78px 24px; background: var(--ch); position: relative; overflow: hidden; text-align: center; }
#designer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); }
#designer::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 380px; height: 380px; background: radial-gradient(circle, rgba(212,169,64,.09) 0%, transparent 65%); pointer-events: none; }
.des-inner { position: relative; z-index: 1; }
.des-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 2px solid var(--g3); display: block; box-shadow: 0 0 0 6px rgba(212,169,64,.12); }
.des-role { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--g3); margin-bottom: 8px; }
.des-name { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 300; color: #fff; margin-bottom: 16px; letter-spacing: 0.05em; }
.des-divider { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); margin: 0 auto 18px; }
.des-bio { font-size: 0.76rem; color: rgba(245,240,232,0.65); line-height: 2; max-width: 340px; margin: 0 auto 28px; }
.des-stats { display: flex; justify-content: center; gap: 32px; margin-bottom: 28px; }
.ds-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; display: block; background: linear-gradient(135deg, var(--g1), var(--g3), var(--g5)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ds-lbl { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,232,0.45); display: block; margin-top: 2px; }

/* GALLERY */
#gallery { padding: 0; background: var(--ch2); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gal-item { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.gal-item:hover img { transform: scale(1.06); }

/* PILLARS */
#pil { padding: 78px 24px; background: var(--iv); position: relative; }
#pil::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); }
.plist { display: flex; flex-direction: column; margin-top: 40px; }
.pi { padding: 26px 0; border-bottom: 1px solid var(--ln); display: flex; align-items: flex-start; gap: 18px; }
.pi:first-child { border-top: 1px solid var(--ln); }
.pn { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 300; line-height: 1; flex-shrink: 0; width: 34px; background: linear-gradient(135deg, var(--g1) 0%, var(--g3) 55%, var(--g5) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pt { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 4px; color: var(--ch2); }
.pd { font-size: 0.75rem; color: var(--tx); line-height: 1.9; }

/* TESTIMONIALS */
#testi { padding: 78px 0; background: var(--iv2); position: relative; }
#testi::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); }
.tw { margin-top: 44px; }
.tc { background: var(--iv); border-bottom: 1px solid var(--ln); padding: 32px 24px; }
.tc:first-child { border-top: 1px solid var(--ln); }
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg { width: 11px; height: 11px; }
.tq { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.72; color: var(--ch2); margin-bottom: 16px; }
.tau { display: flex; align-items: center; gap: 11px; }
.tav { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--g2), var(--g4)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 0.88rem; font-weight: 600; color: #fff; }
.tnm { font-size: 0.69rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ch2); }
.tdl { font-size: 0.6rem; color: var(--g2); letter-spacing: 0.08em; }

/* CTA */
#ctasec { padding: 86px 24px; text-align: center; background: var(--iv); position: relative; overflow: hidden; }
#ctasec::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); }
#ctasec::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,169,64,.07) 0%, transparent 65%); pointer-events: none; }
.ci2 { position: relative; z-index: 1; }
#ctasec h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 300; line-height: 1.32; margin-bottom: 14px; color: var(--ch); }
#ctasec p { font-size: 0.77rem; color: var(--tx); line-height: 2; max-width: 285px; margin: 0 auto; }
.cdv { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--g3), transparent); margin: 28px auto; }
.cinfo { display: flex; flex-direction: column; gap: 8px; align-items: center; margin-bottom: 32px; }
.cinfo a { font-size: 0.78rem; color: var(--g2); text-decoration: none; letter-spacing: 0.09em; display: flex; align-items: center; gap: 8px; transition: 0.2s; }
.cinfo a:hover { color: var(--g1); }

/* FOOTER */
footer { background: var(--ch); padding: 48px 24px 32px; text-align: center; }
.flr { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; letter-spacing: 0.12em; background: linear-gradient(135deg, var(--g1), var(--g3), var(--g5), var(--g3)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 5s linear infinite; display: inline-block; }
.fln { font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 300; letter-spacing: 0.42em; text-transform: uppercase; color: var(--g3); display: block; margin-top: 2px; }
.fdv { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, var(--g3), transparent); margin: 20px auto 18px; }
.fcp { font-size: 0.59rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(212,169,64,.42); line-height: 2.3; }
.fcp a { color: rgba(212,169,64,.5); text-decoration: none; transition: 0.2s; }
.fcp a:hover { color: var(--g3); }

/* FLOAT WA */
.fwa { position: fixed; bottom: 20px; right: 16px; z-index: 200; width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--g1), var(--g3)); display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 18px rgba(140,104,32,.32); transition: 0.25s, box-shadow 0.25s; animation: fadeUp 0.5s 1.4s ease both; }
.fwa:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(140,104,32,.48); }
.fwa svg { width: 22px; height: 22px; }

/* REVEAL */
.rv { opacity: 0; transform: translateY(20px); transition: 0.62s ease, transform 0.62s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* KF */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { from { background-position: -200% center; } to { background-position: 200% center; } }
@keyframes sdrop { 0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
