/* Salati — shared site styles. Brand: deep green, cream, gold crescent. */
:root {
  --green: #0B4A2E;
  --green-deep: #0A1712;
  --green-mid: #123B2C;
  --cream: #F5F0E6;
  --gold: #E3C666;
  --gold-soft: #F3E4B5;
  --mint: #4FCF97;
  --ink: #14231D;
  --muted: #5C6B63;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--green-deep);
  color: var(--cream);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.brand-name { color: var(--cream); font-weight: 700; font-size: 18px; letter-spacing: -0.2px; }
.nav a { color: rgba(245,240,230,0.82); margin-left: 22px; font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--cream); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--green-deep), var(--green) 60%, var(--green-mid));
  color: var(--cream);
  padding: 96px 0 104px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 { font-size: 46px; line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; font-weight: 800; }
.hero p { font-size: 19px; color: rgba(245,240,230,0.82); max-width: 540px; margin: 0 auto 34px; }
.hero .crescent { margin: 0 auto 28px; width: 92px; height: 92px; }

.btn-app {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--green-deep);
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 16px;
}
.btn-app:hover { text-decoration: none; opacity: 0.92; }

/* Feature grid */
.features { padding: 84px 0; }
.section-title { text-align: center; font-size: 30px; letter-spacing: -0.5px; margin-bottom: 12px; font-weight: 800; color: var(--green); }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; margin-bottom: 52px; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid rgba(11,74,46,0.10);
  border-radius: 18px; padding: 26px;
}
.card .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(79,207,151,0.16);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.card h3 { font-size: 18px; margin-bottom: 6px; color: var(--ink); }
.card p { color: var(--muted); font-size: 15px; }

/* Legal / doc pages */
.doc { padding: 56px 0 96px; }
.doc h1 { font-size: 34px; letter-spacing: -0.6px; color: var(--green); margin-bottom: 8px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 21px; margin: 34px 0 12px; color: var(--ink); }
.doc p, .doc li { color: #33413A; font-size: 16px; margin-bottom: 12px; }
.doc ul { padding-left: 22px; margin-bottom: 12px; }
.doc a { text-decoration: underline; }
.callout {
  background: #fff; border: 1px solid rgba(11,74,46,0.12);
  border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 18px 20px; margin: 22px 0;
}
.contact-card {
  background: var(--green-deep); color: var(--cream);
  border-radius: 18px; padding: 30px; margin-top: 28px;
}
.contact-card h3 { color: var(--cream); font-size: 20px; margin-bottom: 10px; }
.contact-card p { color: rgba(245,240,230,0.82); }
.contact-card a { color: var(--gold-soft); }

/* Footer */
.site-footer { background: var(--green-deep); color: rgba(245,240,230,0.7); padding: 40px 0; margin-top: 0; }
.site-footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.site-footer a { color: rgba(245,240,230,0.85); margin-right: 20px; font-size: 15px; }
.site-footer .copy { font-size: 14px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .grid { grid-template-columns: 1fr; }
  .nav a { margin-left: 14px; font-size: 14px; }
  .brand-name { font-size: 16px; }
}
