/* Cuttle – Nuts, Naturally. Landing page styles. */

:root {
  --color-bg: #faf8f5;
  --color-surface: #fff;
  --color-text: #2c2620;
  --color-text-muted: #6b635b;
  --color-accent: #8b6914;
  --color-accent-light: #c9a227;
  --color-hero-bg: #e8e0d4;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(44, 38, 32, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header */
.site-header {
  padding: var(--space-md) 0;
  background: var(--color-surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-text);
  text-decoration: none;
}

.logo-dot {
  color: var(--color-accent);
}

.site-header nav {
  display: flex;
  gap: var(--space-md);
}

.site-header nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.site-header nav a:hover {
  color: var(--color-accent);
}

/* Hero */
.hero {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--color-hero-bg);
  overflow: hidden;
}

.hero-accent {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 400;
  margin: 0 0 var(--space-md);
  line-height: 1.15;
  color: var(--color-text);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
  max-width: 32ch;
}

.cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-surface);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.section .lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
}

.section p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}

.section p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Varieties grid */
.variety-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.variety-grid li {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.variety-name {
  display: block;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.variety-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Benefits list */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: var(--space-sm) 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text);
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* CTA section */
.cta-section {
  background: var(--color-hero-bg);
  text-align: center;
}

.cta-section p {
  margin-bottom: var(--space-sm);
}

/* Footer */
.site-footer {
  padding: var(--space-lg) 0;
  background: var(--color-text);
  color: var(--color-bg);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.85);
}

@media (max-width: 480px) {
  .site-header .container {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .variety-grid {
    grid-template-columns: 1fr;
  }
}
