/* ═══════════════════════════════════════════════
   NOW2VALUE — Main Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,600;1,300&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Brand tokens ── */
:root {
  --cream:         #f5f2ed;
  --cream-dark:    #ede9e2;
  --cream-card:    #ffffff;
  --charcoal:      #7c6a54;
  --charcoal-mid:  #5a4d3d;
  --muted:         #7a6a58;
  --accent:        #e67109;
  --accent-light:  #f08020;
  --accent-pale:   rgba(230,113,9,0.10);
  --sand:          #f0e6d3;
  --sand-dark:     #e8d9c0;
  --taupe:         #7b6954;
  --accent-border: rgba(230,113,9,0.22);
  --font-head:     'Sora', sans-serif;
  --font-body:     'IBM Plex Sans', sans-serif;
  --max-w:         1080px;
  --radius:        12px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--dark { background: var(--charcoal); color: #fdf8f2; }
.section--cream-dark { background: var(--cream-dark); }

h1,h2,h3,h4,h5 { font-family: var(--font-head); letter-spacing: -0.02em; line-height: 1.2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,113,9,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent-pale);
  transform: translateY(-2px);
}
.btn svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,242,237,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--accent-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo img { height: 36px; border-radius: 4px; }
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}
.nav__logo-text span { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s;
  border-radius: 2px;
}
.nav__links a:hover, .nav__links a.active { color: var(--accent); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 8px; }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--accent-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__cta { display: none; }
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  color: rgba(253,248,242,0.80);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fdf8f2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer__brand-name span { color: var(--accent); }
.footer__tagline { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
  transition: opacity 0.2s;
}
.footer__social a:hover { opacity: 0.75; }
.footer__heading {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(253,248,242,0.80); transition: color 0.2s; font-size: 14px; }
.footer__links a:hover { color: #fdf8f2; }
.footer__contact p { margin-bottom: 8px; }
.footer__contact a { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Fade-in on scroll ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Card base ── */
.card {
  background: var(--cream-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(230,113,9,0.10);
  border-color: rgba(230,113,9,0.4);
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width:22px; height:22px; stroke:var(--accent); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.card__title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--charcoal); }
.card__body { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--muted); }
