/* NuttyMe LLC — Corporate Styles */
:root {
  --navy: #1a1410;
  --slate: #3d3226;
  --muted: #9a8b7a;
  --light: #f5f0e8;
  --border: #e5ddd1;
  --accent: #c45c26;
  --max-width: 960px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--slate);
  line-height: 1.6;
  background: #faf7f2;
}

a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

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

/* Header */
header {
  border-bottom: 1px solid var(--border);
  background: #faf7f2;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo span { color: var(--accent); }

/* Mobile menu */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

nav {
  display: flex;
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--navy); }

@media (max-width: 640px) {
  .hamburger { display: flex; }
  nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #faf7f2;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .menu-toggle:checked ~ nav {
    transform: translateX(0);
  }
  nav a {
    margin-left: 0;
    font-size: 1.2rem;
  }
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 720px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 20px;
  max-width: 600px;
}

.hero .cta {
  margin-top: 32px;
  display: inline-flex;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-primary:hover { background: var(--slate); border-color: var(--slate); }

.btn-secondary {
  background: #faf7f2;
  color: var(--slate);
  border-color: var(--border);
}

.btn-secondary:hover { border-color: var(--muted); }

/* Sections */
section { padding: 72px 0; }

section.alt { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}

p { margin-bottom: 16px; color: var(--slate); }

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: #fdf9f3;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.card h3 { margin-bottom: 10px; }

.card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0; }

/* About / Legal details */
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.detail-row:last-child { border-bottom: none; }

.detail-row .label { color: var(--muted); font-weight: 500; }

.detail-row .value { color: var(--slate); font-weight: 600; text-align: right; }

/* Lists */
ul.clean { list-style: none; padding: 0; }
ul.clean li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
ul.clean li:last-child { border-bottom: none; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

.contact-block h3 { margin-bottom: 6px; }
.contact-block p { margin-bottom: 4px; font-size: 0.95rem; color: var(--muted); }

form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
  margin-top: 16px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--slate);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

form button { margin-top: 20px; }

/* Legal */
.legal-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.legal-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.legal-nav a:hover, .legal-nav a.active { color: var(--navy); }

.legal-section { margin-bottom: 48px; }
.legal-section h3 { font-size: 1.2rem; margin-bottom: 12px; }
.legal-section p, .legal-section li { font-size: 0.92rem; color: var(--slate); }
.legal-section ul { padding-left: 20px; margin-bottom: 16px; }
.legal-section ul li { margin-bottom: 8px; }

/* Footer */
footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 40px 0;
  font-size: 0.85rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer a { color: #cbd5e1; text-decoration: none; }
footer a:hover { color: #fff; }

.btn { text-decoration: none; }
.legal-nav a { text-decoration: none; }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
