﻿:root {
  --bg: #f5f3ef;
  --bg-alt: #efe8e1;
  --ink: #1d1a16;
  --ink-soft: #3f3a33;
  --accent: #c36241;
  --accent-2: #1f6f78;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(29, 26, 22, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1100px;
  --font-display: "Marcellus", "Georgia", serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at top, #fbf7f1 0%, var(--bg) 55%, #efe6dd 100%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 26, 22, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #d9825b);
  box-shadow: 0 10px 20px rgba(195, 98, 65, 0.35);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(29, 26, 22, 0.2);
  background: transparent;
  border-radius: 999px;
  padding: 8px 16px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  border-bottom: 1px solid rgba(29, 26, 22, 0.08);
}

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

.hero {
  padding: 96px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 600;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px rgba(195, 98, 65, 0.3);
}

.btn.ghost {
  border-color: rgba(29, 26, 22, 0.2);
  color: var(--ink-soft);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.stat-card h3 {
  margin: 0 0 4px;
  font-size: 1.8rem;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 30px rgba(29, 26, 22, 0.08);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 8px 14px;
  background: var(--card);
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(29, 26, 22, 0.08);
}

.presence {
  display: grid;
  gap: 16px;
}

.presence-card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 24px rgba(29, 26, 22, 0.08);
}

.contact {
  background: #1d1a16;
  color: #f4f0ea;
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.contact-meta {
  display: grid;
  gap: 16px;
  margin: 24px 0 28px;
}

.contact-meta span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cfc7be;
}

.contact-card {
  background: #2c2721;
  padding: 28px;
  border-radius: var(--radius);
}

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

.socials {
  display: flex;
  gap: 16px;
}

.team-email {
  color: var(--accent-2);
  font-weight: 600;
}

.site-footer {
  padding: 40px 0 16px;
  background: #15120f;
  color: #b9b1a8;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
