/* FLUA — Surf Co. · Comunidade
   Light Patagonia aesthetic — cream, sage, clay, sand
   Playfair Display + Hanken Grotesk */

:root {
  --paper:    #f4f0e7;
  --paper-2:  #ece6d9;
  --paper-3:  #e1d9c8;
  --ink:      #2a2722;
  --ink-2:    #57514a;
  --ink-3:    #8c8479;
  --sage:     #3d92b8;
  --sage-d:   #2c6378;
  --clay:     #b56a41;
  --sand:     #c9b48c;
  --line:     rgba(42,39,34,.12);
  --line-s:   rgba(42,39,34,.07);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, sans-serif;
  --ease:  cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-io: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; cursor: none; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--sage); }

.eyebrow {
  display: inline-block; font-family: var(--sans); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage-d); margin-bottom: 14px; font-weight: 600;
}

/* LOADER */
#loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-inner span { font-size: .85rem; font-weight: 700; letter-spacing: .3em; color: var(--ink); }
.loader-inner svg { animation: bob 1.4s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.loader-track { width: 100px; height: 1px; background: var(--paper-3); overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--sage); animation: lf 1s var(--ease) .1s forwards; }
@keyframes lf { to { width: 100%; } }

/* CURSOR */
#cur {
  position: fixed; width: 8px; height: 8px; background: var(--clay);
  border-radius: 50%; pointer-events: none; z-index: 9990; mix-blend-mode: multiply;
  transform: translate(-50%,-50%); transition: width .3s, height .3s, background .2s;
}
#cur.big { width: 40px; height: 40px; background: rgba(111,125,94,.25); border: 1px solid var(--sage); }
@media (hover: none) { #cur { display: none; } body { cursor: auto; } }

/* NAV */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
  padding: 0 56px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s, height .4s, box-shadow .5s, color .5s;
  color: var(--paper);
}
#nav.scrolled {
  background: rgba(244,240,231,.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line); height: 60px; color: var(--ink);
}
.nav-logo { display: flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 700; letter-spacing: .18em; cursor: none; transition: opacity .2s; }
.nav-logo:hover { opacity: .7; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: inherit; font-weight: 600; opacity: .85; transition: opacity .18s; cursor: none; }
.nav-links a:hover { opacity: 1; }
.nav-cta { border: 1.5px solid currentColor; padding: 7px 16px; transition: all .25s !important; opacity: 1 !important; }
#nav.scrolled .nav-cta { border-color: var(--clay); color: var(--clay); }
.nav-cta:hover { background: var(--clay); border-color: var(--clay) !important; color: var(--paper) !important; }
#burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
#burger span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: all .2s; }

#mob-menu {
  position: fixed; inset: 0; z-index: 490; background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  transform: translateX(100%); transition: transform .5s var(--ease-io);
}
#mob-menu.open { transform: translateX(0); }
#mob-menu a { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; color: var(--ink); }
#mob-menu a:hover { color: var(--sage); }

/* NAV CART */
.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-cart { position: relative; background: none; border: none; color: inherit; cursor: none; display: flex; align-items: center; padding: 4px; }
.nav-cart svg { display: block; }
.cart-count { position: absolute; top: -6px; right: -8px; background: var(--clay); color: #fff; font-size: 9px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* CART PANEL */
#cart { position: fixed; inset: 0; z-index: 650; visibility: hidden; transition: visibility 0s .4s; }
#cart.open { visibility: visible; transition: visibility 0s 0s; }
#cart-bd { position: absolute; inset: 0; background: rgba(42,39,34,.55); backdrop-filter: blur(8px); opacity: 0; transition: opacity .4s; }
#cart.open #cart-bd { opacity: 1; }
#cart-panel { position: absolute; top: 0; right: -100%; width: min(440px,100%); height: 100%; background: var(--paper); border-left: 1px solid var(--line); padding: 52px 28px 28px; overflow-y: auto; transition: right .4s var(--ease); box-shadow: -20px 0 50px rgba(42,39,34,.2); display: flex; flex-direction: column; }
#cart.open #cart-panel { right: 0; }
#cart-x { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--ink-2); cursor: none; transition: color .2s; }
#cart-x:hover { color: var(--clay); }
.cart-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 20px; }
#cart-items { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { color: var(--ink-3); font-size: 14px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line-s); }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 3px; }
.ci-info h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); }
.ci-meta { font-size: 11px; color: var(--ink-3); }
.ci-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.ci-q { width: 24px; height: 24px; border: 1px solid var(--line); background: none; color: var(--ink-2); cursor: none; border-radius: 3px; line-height: 1; }
.ci-q:hover { border-color: var(--sage); color: var(--sage); }
.ci-qty > span { font-size: 13px; font-weight: 600; min-width: 18px; text-align: center; }
.ci-rm { background: none; border: none; color: var(--ink-3); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; cursor: none; margin-left: 6px; }
.ci-rm:hover { color: var(--clay); }
.ci-sub { font-size: 13px; font-weight: 700; color: var(--sage-d); white-space: nowrap; }
#cart-foot { padding-top: 16px; border-top: 1px solid var(--line); margin-top: 14px; }
.cart-tier { font-size: 12px; color: var(--clay); margin-bottom: 12px; line-height: 1.5; min-height: 16px; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total-row span { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.cart-total-row strong { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }
#cart-checkout { width: 100%; justify-content: center; background: var(--sage); color: var(--paper); }
#cart-checkout:hover { background: var(--sage-d); }

/* HERO */
#hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #1a2418;
}
.hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,36,24,.55) 0%, rgba(26,36,24,.25) 40%, rgba(42,39,34,.5) 100%);
}
.hero-content {
  position: relative; z-index: 3; text-align: center; padding: 0 24px; max-width: 1000px; color: var(--paper);
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(244,240,231,.85);
  margin-bottom: 26px; opacity: 0; animation: fu 1s var(--ease) .3s forwards;
}
#hero h1 {
  font-family: var(--serif); font-size: clamp(4.5rem, 11vw, 9.5rem); font-weight: 800;
  line-height: .95; display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 30px;
}
#hero h1 em { font-style: italic; font-weight: 500; opacity: 0; animation: fu 1.1s var(--ease-io) .5s forwards; }
#hero h1 span { opacity: 0; animation: fu 1.1s var(--ease-io) .65s forwards; padding-left: clamp(20px,5vw,90px); }
.hero-sub { font-size: clamp(14px,1.6vw,17px); line-height: 1.7; color: rgba(244,240,231,.85); margin-bottom: 38px; opacity: 0; animation: fu 1s var(--ease) .85s forwards; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fu 1s var(--ease) 1s forwards; }
@keyframes fu { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.btn-fill { display: inline-flex; align-items: center; justify-content: center; background: var(--paper); color: var(--ink); padding: 14px 32px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; transition: all .28s var(--ease); cursor: none; }
.btn-fill:hover { background: var(--sage); color: var(--paper); transform: translateY(-3px); }
.btn-line { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--paper); border: 1.5px solid rgba(244,240,231,.5); padding: 14px 32px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; transition: all .28s var(--ease); cursor: none; }
.btn-line:hover { border-color: var(--paper); background: rgba(244,240,231,.12); transform: translateY(-3px); }

.scroll-ind { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fu 1s var(--ease) 1.4s forwards; }
.scroll-ind span { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,240,231,.6); }
.scroll-mouse { width: 20px; height: 32px; border: 1.5px solid rgba(244,240,231,.5); border-radius: 12px; position: relative; }
.scroll-mouse::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: var(--paper); border-radius: 2px; animation: sm 1.8s ease-in-out infinite; }
@keyframes sm { 0%,100%{opacity:0;transform:translate(-50%,0)} 50%{opacity:1;transform:translate(-50%,8px)} }

/* MARQUEE */
.marquee-wrap { background: var(--ink); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: mq 40s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: rgba(244,240,231,.4); padding: 0 18px; font-weight: 500; }
.marquee-track b { color: var(--sand); padding: 0 4px; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* COMMUNITY / PHILOSOPHY */
.philo { padding: 130px 56px; background: var(--paper); }
.philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1280px; margin: 0 auto; }
.philo-left h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; line-height: 1.18; margin-bottom: 26px; }
.philo-left h2 em { color: var(--sage-d); font-style: italic; }
.philo-left p { font-size: 16px; line-height: 1.85; color: var(--ink-2); margin-bottom: 18px; }
.philo-left p strong { color: var(--clay); font-weight: 600; }
.philo-quote { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--sage-d); border-left: 2px solid var(--sage); padding-left: 20px; margin: 30px 0; line-height: 1.5; }
.philo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.philo-tags span { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); padding: 7px 13px; border-radius: 30px; cursor: none; transition: all .22s; }
.philo-tags span:hover { border-color: var(--sage); color: var(--sage); }

.philo-visual { position: relative; }
.philo-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--paper-3); border-radius: 2px; }
.philo-img img { transition: transform 8s ease-out; }
.philo-img.kb img { transform: scale(1.12); }
.philo-badge {
  position: absolute; bottom: -22px; left: -22px; width: 120px; height: 120px; border-radius: 50%;
  background: var(--clay); color: var(--paper); display: flex; flex-direction: column;
  align-items: center; justify-content: center; box-shadow: 0 14px 34px rgba(181,106,65,.3);
  animation: fl 6s ease-in-out infinite; text-align: center; padding: 10px;
}
.philo-badge strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; line-height: 1.2; }
.philo-badge small { font-size: 8px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-top: 4px; }
@keyframes fl { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* NATURE BAND (parallax) */
.nature-band { position: relative; height: 70vh; min-height: 460px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #1a2418; }
.nature-band video, .nature-band img { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; top: -10%; will-change: transform; }
.nature-band .band-img { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { 0% { transform: scale(1.06) translate(0,0); } 100% { transform: scale(1.18) translate(-2%,-3%); } }
.nature-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,20,.5) 0%, rgba(20,12,8,.32) 50%, rgba(10,8,6,.55) 100%); }
.nature-band-text { position: relative; z-index: 2; text-align: center; color: var(--paper); padding: 0 24px; max-width: 800px; }
.nature-band-text p { font-family: var(--serif); font-size: clamp(1.6rem,3.2vw,2.6rem); font-weight: 400; font-style: italic; line-height: 1.4; }
.nature-band-text small { display: block; margin-top: 18px; font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; opacity: .7; }

/* STATS */
.stats-section { background: var(--paper-2); padding: 76px 56px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; border-top: 1px solid var(--line-s); border-bottom: 1px solid var(--line-s); }
.stat { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 56px; }
.stat-div { width: 1px; height: 54px; background: var(--line); align-self: center; }
.sn { font-family: var(--serif); font-size: clamp(2.4rem,4.5vw,3.8rem); font-weight: 400; color: var(--sage); line-height: 1; }
.sl { font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }

/* COLLECTION */
.coll { padding: 110px 56px; background: var(--paper); }
.coll-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 54px; max-width: 1280px; margin-inline: auto; flex-wrap: wrap; gap: 24px; }
.coll-head h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.f { background: none; border: 1px solid var(--line); color: var(--ink-2); padding: 8px 16px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; cursor: none; transition: all .22s; display: flex; align-items: center; gap: 6px; }
.f em { font-style: normal; background: var(--paper-3); font-size: 9px; padding: 2px 6px; transition: background .22s; }
.f:hover, .f.active { background: var(--sage); color: var(--paper); border-color: var(--sage); }
.f.active em, .f:hover em { background: rgba(244,240,231,.22); }

.pgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; max-width: 1280px; margin: 0 auto; }
.card { background: var(--paper-2); cursor: none; transition: transform .45s var(--ease), box-shadow .45s; }
.card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(42,39,34,.14); }
.ci { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--paper-3); }
.ci img { position: absolute; inset: 0; transition: opacity .5s var(--ease), transform .6s var(--ease); }
.if { opacity: 0; }
.card:hover .ib { opacity: 0; transform: scale(1.05); }
.card:hover .if { opacity: 1; transform: scale(1.05); }
.cho { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; }
.vb { width: 100%; padding: 15px; background: rgba(42,39,34,.92); border: none; color: var(--paper); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; cursor: none; transform: translateY(100%); transition: transform .28s var(--ease); }
.card:hover .vb { transform: translateY(0); }
.ct { position: absolute; top: 12px; left: 12px; z-index: 3; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: #fff; padding: 3px 8px; }
.ct2 { position: absolute; top: 32px; left: 12px; z-index: 3; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--paper); background: rgba(111,125,94,.85); padding: 3px 8px; }
.ci2 { padding: 16px 18px; }
.ci2 h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--ink); margin-bottom: 5px; }
.cm { display: flex; justify-content: space-between; align-items: center; }
.cm span { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.cm strong { font-size: 13px; font-weight: 700; color: var(--sage-d); }

/* COMMUNITY CTA (replaces invite) */
.join { position: relative; padding: 120px 56px; background: var(--sage-d); overflow: hidden; }
.join::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(201,180,140,.15), transparent 70%); pointer-events: none; }
.join-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; color: var(--paper); }
.join .eyebrow { color: var(--sand); }
.join h2 { font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,3.6rem); font-weight: 400; line-height: 1.15; margin-bottom: 22px; }
.join h2 em { font-style: italic; color: var(--sand); }
.join p { font-size: 16px; line-height: 1.8; color: rgba(244,240,231,.8); margin-bottom: 36px; max-width: 600px; margin-inline: auto; }
.join-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.join .btn-fill { background: var(--paper); color: var(--sage-d); }
.join .btn-fill:hover { background: var(--sand); color: var(--ink); }

/* DRAWER */
#drawer { position: fixed; inset: 0; z-index: 600; visibility: hidden; transition: visibility 0s .4s; }
#drawer.open { visibility: visible; transition: visibility 0s 0s; }
#dbd { position: absolute; inset: 0; background: rgba(42,39,34,.55); backdrop-filter: blur(8px); opacity: 0; transition: opacity .4s; }
#drawer.open #dbd { opacity: 1; }
#dp { position: absolute; top: 0; right: -100%; width: min(540px,100%); height: 100%; background: var(--paper); border-left: 1px solid var(--line); padding: 52px 36px 36px; overflow-y: auto; transition: right .4s var(--ease); box-shadow: -20px 0 50px rgba(42,39,34,.2); }
#drawer.open #dp { right: 0; }
#dx { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--ink-2); cursor: none; transition: color .2s; }
#dx:hover { color: var(--clay); }
#dc { display: flex; flex-direction: column; gap: 24px; }
.di { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--paper-3); position: relative; }
.di img { position: absolute; inset: 0; transition: opacity .3s; }
.di img.h { opacity: 0; }
.ddots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.ddot { width: 6px; height: 6px; border-radius: 50%; background: rgba(42,39,34,.25); border: none; cursor: none; transition: background .2s, transform .2s; }
.ddot.on { background: var(--clay); transform: scale(1.3); }
.de { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-d); font-weight: 700; }
.dn { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--ink); }
.dpr { font-size: 1.3rem; font-weight: 700; color: var(--clay); }
.dd { font-size: 14px; line-height: 1.75; color: var(--ink-2); }
.dsz { display: flex; flex-direction: column; gap: 10px; }
.dszl { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.dsz-row { display: flex; gap: 8px; flex-wrap: wrap; }
.sz { width: 42px; height: 42px; border: 1px solid var(--line); background: none; color: var(--ink-2); font-size: 11px; font-weight: 600; cursor: none; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.sz:hover { border-color: var(--sage); color: var(--sage); }
.sz.on { background: var(--sage); border-color: var(--sage); color: var(--paper); }
.dqty { display: flex; flex-direction: column; gap: 10px; }
.qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 4px; width: fit-content; overflow: hidden; }
.qty-btn { width: 42px; height: 42px; background: none; border: none; color: var(--ink-2); font-size: 1.1rem; cursor: none; transition: background .2s, color .2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--sage); color: var(--paper); }
.qty-val { min-width: 46px; text-align: center; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); }
.dspec-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.dsr { display: flex; justify-content: space-between; font-size: 12px; gap: 16px; }
.dsr span { color: var(--ink-3); flex-shrink: 0; }
.dsr strong { color: var(--ink); text-align: right; }
.dact { display: flex; flex-direction: column; gap: 10px; }
.dact .btn-fill { width: 100%; justify-content: center; background: var(--sage); color: var(--paper); }
.dact .btn-fill:hover { background: var(--sage-d); }
.btn-line-d { width: 100%; text-align: center; border: 1px solid var(--line); color: var(--ink-2); padding: 13px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all .22s; cursor: none; }
.btn-line-d:hover { border-color: var(--sage); color: var(--sage); }

/* FOOTER */
footer { background: var(--ink); padding: 80px 56px 40px; }
.ft { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 60px; margin-bottom: 52px; max-width: 1280px; margin-inline: auto; }
.fl { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; letter-spacing: .16em; color: var(--paper); margin-bottom: 12px; }
.fb p { font-size: 13px; line-height: 1.7; color: rgba(244,240,231,.4); margin-bottom: 18px; }
.fs { display: flex; gap: 14px; }
.fs a, .fn a, .fc a { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,240,231,.4); font-weight: 600; transition: color .18s; cursor: none; }
.fs a:hover, .fn a:hover, .fc a:hover { color: var(--sand); }
.fn h5, .fc h5 { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(244,240,231,.55); margin-bottom: 18px; font-weight: 600; }
.fn, .fc { display: flex; flex-direction: column; gap: 12px; }
.fbot { border-top: 1px solid rgba(244,240,231,.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; max-width: 1280px; margin-inline: auto; }
.fbot span { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: rgba(244,240,231,.25); }

/* WHATSAPP */
.wfab { position: fixed; bottom: 28px; right: 24px; z-index: 400; display: flex; align-items: center; gap: 10px; background: #128c7e; color: #fff; padding: 11px 14px 11px 12px; border-radius: 50px; box-shadow: 0 6px 20px rgba(18,140,126,.35); max-width: 46px; overflow: hidden; transition: max-width .4s var(--ease), transform .28s, box-shadow .28s; cursor: none; }
.wfab:hover { max-width: 180px; background: #25d366; transform: translateY(-3px); }
.wfab span { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity .3s; }
.wfab:hover span { opacity: 1; }

/* REVEALS */
.rv, .rv-l, .rv-r { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv { transform: translateY(36px); }
.rv-l { transform: translateX(-36px); }
.rv-r { transform: translateX(36px); }
.rv.in, .rv-l.in, .rv-r.in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pgrid { grid-template-columns: repeat(3,1fr); }
  #nav, .philo, .stats-section, .coll, .join, footer { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 1024px) {
  .philo-grid { grid-template-columns: 1fr; gap: 56px; }
  .ft { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  #burger { display: flex; }
  .pgrid { grid-template-columns: repeat(2,1fr); }
  .stat-div { display: none; }
  .stats-section { justify-content: flex-start; }
  .ft { grid-template-columns: 1fr; }
  #nav, .philo, .stats-section, .coll, .join, footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
  .pgrid { grid-template-columns: 1fr; }
  .hero-btns, .join-btns { flex-direction: column; align-items: center; }
  .hero-btns a, .join-btns a { width: 100%; max-width: 280px; justify-content: center; }
}
