:root {
  --color-primary: #6E8B8A;
  --color-secondary: #B8C4C2;
  --color-accent: #E8A05C;
  --color-bg: #F4F6F5;
  --color-text: #2B3230;
  --color-card-bg: #FFFFFF;
  --radius: 12px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

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

/* Header / Nav */
.site-header {
  background: var(--color-card-bg);
  border-bottom: 1px solid var(--color-secondary);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo:hover {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
}

.nav-links a.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-bg) 100%);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p.tagline {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero p.lede {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: #2B3230;
}

.btn-primary:hover {
  background: #d68f45;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

/* Sections */
section {
  padding: 3rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(43, 50, 48, 0.08);
  text-align: center;
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0.25rem 0 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Founder cards */
.founder-card {
  text-align: left;
}

.founder-card .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.founder-card .title {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Pricing tables */
.menu-section {
  margin-bottom: 2.5rem;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(43, 50, 48, 0.08);
}

.menu-table th, .menu-table td {
  text-align: left;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-bg);
}

.menu-table th {
  background: var(--color-primary);
  color: #fff;
}

.menu-table tr:last-child td {
  border-bottom: none;
}

.menu-table td.price {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

/* Coming soon */
.coming-soon {
  text-align: center;
  padding: 4rem 1.5rem;
}

.coming-soon .icon {
  font-size: 4rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-card h3 {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--color-secondary);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-secondary);
  margin-top: 1.5rem;
  opacity: 0.8;
}

/* Responsive nav */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-card-bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--color-secondary);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 1.5rem;
    display: block;
    border-bottom: 1px solid var(--color-bg);
  }

  .site-header {
    position: relative;
  }
}
