/* The Adventure Society — landing site
   Color palette matches the Deal-i$h Dining app design system:
   - Sage primary:   #4A7C59
   - Sage dark:      #5E9670
   - Terracotta:     #C1694F
   - Cream:          #F1ECE2
   - Background:     #FAF8F4
   - Text:           #1F2421
   - Text muted:     #5E6863
   - Surface:        #FFFFFF
   - Border:         #E5E1D8
*/

:root {
  --sage: #4A7C59;
  --sage-dark: #5E9670;
  --terracotta: #C1694F;
  --cream: #F1ECE2;
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --text: #1F2421;
  --text-muted: #5E6863;
  --border: #E5E1D8;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--sage);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin: 0 0 16px;
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--sage);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--sage-dark);
}

.site-header nav a {
  margin-left: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-header nav a:hover {
  color: var(--sage);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
}

/* Products section */
.products {
  padding: 80px 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 48px;
}

.product-card {
  display: flex;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}

.product-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  background: var(--sage);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-monogram {
  color: var(--cream);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.product-content {
  flex: 1;
}

.product-content h3 {
  margin-bottom: 4px;
}

.product-tagline {
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}

.product-features {
  margin: 16px 0;
  padding-left: 20px;
}

.product-features li {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-status {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.product-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
}

/* Contact */
.contact {
  padding: 60px 0;
  background: var(--cream);
  text-align: center;
}

.contact-email {
  font-size: 1.25rem;
  margin-top: 24px;
}

.contact-email a {
  color: var(--sage);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: var(--cream);
  padding: 40px 0 24px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-company {
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-meta {
  color: rgba(241, 236, 226, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--cream);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--sage-dark);
  text-decoration: none;
}

.footer-copyright {
  color: rgba(241, 236, 226, 0.5);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 236, 226, 0.1);
}

/* Legal pages (privacy, terms) */
.legal {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.legal .legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

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

.legal h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal p, .legal li {
  color: var(--text);
}

.legal ul {
  padding-left: 24px;
}

.legal li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero { padding: 48px 0 40px; }
  .products { padding: 48px 0; }
  .product-card { flex-direction: column; gap: 16px; padding: 24px; }
  .product-icon { width: 72px; height: 72px; border-radius: 18px; }
  .product-monogram { font-size: 1.75rem; }
  .footer-grid { flex-direction: column; gap: 16px; }
  .site-header nav a { margin-left: 16px; }
}
