/* ═══════════════════════════════════════════════
   GROOVANT.IE  ·  Shared Stylesheet
   Green Till Ltd · CRO 670625 · Dublin, Ireland
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --black:   #09090B;
  --dark:    #0F0F13;
  --card:    #16161C;
  --white:   #FFFFFF;
  --off:     #F5F4F0;
  --ink:     #111113;
  --body:    #44444C;
  --muted:   #888892;
  --border-dk: rgba(255,255,255,0.10);
  --border-lt: #DDDBD6;
  --lime:    #BEFF29;
  --green:   #1B4729;
  --serif:   'Fraunces', Georgia, serif;
  --sans:    'Outfit', system-ui, sans-serif;
  --max:     1160px;
  --pad:     56px;
  --r:       12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--ink); font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--lime); color: var(--black); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.w { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 68px;
  background: rgba(9,9,11,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-dk);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-size: 21px; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
}
.nav-logo span { color: var(--lime); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.58); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links .nav-cta {
  background: var(--lime); color: #000 !important;
  font-weight: 600 !important; padding: 10px 22px; border-radius: 6px;
  transition: opacity 0.2s !important;
}
.nav-links .nav-cta:hover { opacity: 0.85 !important; }

.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: #06060A;
  border-top: 1px solid var(--border-dk);
  padding: 72px var(--pad) 40px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 52px;
  border-bottom: 1px solid var(--border-dk); margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 14px; letter-spacing: -0.01em;
}
.footer-logo span { color: var(--lime); }
.footer-blurb {
  font-size: 14px; color: rgba(255,255,255,0.42);
  line-height: 1.7; font-weight: 300; margin-bottom: 24px; max-width: 240px;
}
.footer-legal {
  font-size: 11px; line-height: 1.95; color: rgba(255,255,255,0.22);
}
.f-head {
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a {
  font-size: 14px; color: rgba(255,255,255,0.42);
  font-weight: 300; transition: color 0.2s;
}
.f-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 12px;
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--sans); font-size: 15px; font-weight: 500;
  border-radius: 7px; transition: all 0.22s; cursor: pointer;
  border: none; padding: 15px 32px; white-space: nowrap;
}
.btn-lime  { background: var(--lime); color: #000; font-weight: 600; }
.btn-lime:hover  { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(190,255,41,0.25); }
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover  { opacity: 0.82; transform: translateY(-1px); }
.btn-black { background: #000; color: #fff; }
.btn-black:hover { opacity: 0.80; }
.btn-ghost-w {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.32);
}
.btn-ghost-w:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.05); }
.btn-ghost-k {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-lt);
}
.btn-ghost-k:hover { border-color: #999; }
.btn-ghost-lm {
  background: transparent; color: #000;
  border: 1.5px solid rgba(0,0,0,0.28);
}
.btn-ghost-lm:hover { border-color: #000; }

/* ══════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════ */
.sec-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.sec-eyebrow::before { content: ''; width: 20px; height: 2px; background: currentColor; }
.sec-eyebrow-lime  { color: var(--lime); }
.sec-eyebrow-green { color: var(--green); }
.sec-eyebrow-muted { color: var(--muted); }

.sec-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700; line-height: 1.07; letter-spacing: -0.03em;
}
.sec-h2 em { font-style: italic; }
.sec-h2-white { color: #fff; }
.sec-h2-white em { color: var(--lime); }
.sec-h2-ink { color: var(--ink); }
.sec-h2-ink em { color: var(--green); }

.sec-body { font-size: 16px; color: var(--body); line-height: 1.75; font-weight: 300; }
.sec-body-dim { font-size: 16px; color: rgba(255,255,255,0.58); line-height: 1.75; font-weight: 300; }

/* ══════════════════════════════════
   PAGE HERO  (inner pages)
══════════════════════════════════ */
.page-hero {
  background: var(--black); padding: 140px 0 80px;
  position: relative; overflow: hidden; min-height: 52vh;
  display: flex; align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18; filter: saturate(0.6);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,11,0.3) 0%, rgba(9,9,11,0.92) 100%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lime);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.page-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--lime); }
.page-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.03em;
  color: #fff; max-width: 700px; margin-bottom: 22px;
}
.page-h1 em { font-style: italic; color: var(--lime); }
.page-sub { font-size: 18px; color: rgba(255,255,255,0.60); line-height: 1.7; font-weight: 300; max-width: 540px; }

/* ══════════════════════════════════
   LOGO CAROUSEL
══════════════════════════════════ */
.logos-strip {
  background: var(--off);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  overflow: hidden; padding: 0;
}
.logos-lbl {
  max-width: var(--max); margin: 0 auto;
  padding: 22px var(--pad) 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.logos-track {
  display: flex; width: max-content;
  animation: marquee 34s linear infinite; padding-bottom: 22px;
}
.logos-track:hover { animation-play-state: paused; }
.logo-chip {
  padding: 0 32px; border-right: 1px solid var(--border-lt);
  font-family: var(--serif); font-size: 15px; font-weight: 400;
  color: var(--muted); white-space: nowrap; transition: color 0.2s;
}
.logo-chip:hover { color: var(--ink); }

/* ══════════════════════════════════
   CTA SECTION (lime bg)
══════════════════════════════════ */
.cta-lime { background: var(--lime); padding: 100px 0; }
.cta-lime-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
.cta-lime-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.03em; color: var(--black);
}
.cta-lime-h2 em { font-style: italic; }
.cta-lime-p { font-size: 17px; color: rgba(0,0,0,0.58); font-weight: 300; line-height: 1.65; margin-top: 14px; max-width: 500px; }
.cta-lime-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.sr { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr.in { opacity: 1; transform: none; }

/* stagger helper */
.sr-1 { transition-delay: 0.1s; }
.sr-2 { transition-delay: 0.2s; }
.sr-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 920px) {
  :root { --pad: 24px; }

  .ham { display: flex; }

  .nav-links {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(9,9,11,0.98);
    flex-direction: column; align-items: stretch;
    padding: 20px var(--pad) 28px; gap: 0;
    border-bottom: 1px solid var(--border-dk);
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.75); font-size: 16px;
  }
  .nav-links .nav-cta {
    border-bottom: none; margin-top: 10px;
    padding: 14px 24px; text-align: center; border-radius: 7px;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-lime-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-lime-btns  { flex-direction: row; flex-wrap: wrap; }

  .page-hero { min-height: auto; padding: 120px 0 60px; }
}
