/* marketing.css — shared styles for all public-facing pages on pocketclients.us */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --cream:      #F5F0E8;
  --cream-dark: #EDE6D6;
  --tan:        #D9CEBA;
  --brown:      #8B6E4E;
  --dark:       #1E1A12;
  --green:      #4A5E32;
  --sage:       #7A9160;
  --rust:       #A04E2A;
  --warm-gray:  #7A6E60;
  --white:      #FDFAF5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1100px;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-gray);
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tan);
}

.site-nav .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--dark); background: var(--cream-dark); }

.nav-cta {
  background: var(--dark) !important;
  color: var(--cream) !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: #2e2618 !important; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-dark {
  background: var(--dark);
  color: var(--cream);
}
.btn-dark:hover { background: #2e2618; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--tan);
}
.btn-outline:hover { border-color: var(--dark); background: var(--cream-dark); }

.btn-accent {
  background: var(--green);
  color: white;
}
.btn-accent:hover { background: #3d4f28; transform: translateY(-1px); }

.btn-lg {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--tan);
  padding: 32px;
}

/* ── Divider ──────────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--tan);
  margin: 0;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--tan);
  padding: 56px 0 32px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.site-footer p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer ul a {
  font-size: 14px;
  color: #a09080;
  transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid #3a3020;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--warm-gray);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.22s; opacity: 0; }
.fade-up-3 { animation-delay: 0.34s; opacity: 0; }
.fade-up-4 { animation-delay: 0.46s; opacity: 0; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section   { padding: 64px 0; }
  .section-sm { padding: 40px 0; }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 480px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}

/* ── Legal page styles ────────────────────────────────────────────────────── */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal-body h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.legal-body .meta {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tan);
}

.legal-body h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
}

.legal-body p, .legal-body li {
  font-size: 15px;
  color: #4a4030;
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
