:root {
  --bg: #E7E5DF;
  --panel: #F6F3EC;
  --panel-strong: #3F3631;
  --text: #1F1A16;
  --muted: #282421;
  --border: #D4CFC6;
  --accent: #B46C28;
  --accent-soft: #475238;
  --shadow: 0 20px 50px rgba(15, 11, 8, 0.2);
  --radius: 18px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

::selection {
  background: rgba(180, 108, 40, 0.3);
}

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

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

.skip {
  position: absolute;
  top: 12px;
  left: -999px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 8px;
  transition: left 0.2s ease;
}

.skip:focus {
  left: 12px;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(231, 229, 223, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-soft);
}

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

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero {
  padding: 80px 0 60px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}

.hero__sub {
  margin: 0 0 28px;
  max-width: 680px;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.button {
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 45px rgba(15, 11, 8, 0.25);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--muted);
  box-shadow: none;
}

.hero__cta .button--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 26, 22, 0.15);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.section {
  padding: 60px 0;
}

.section__head {
  margin-bottom: 30px;
}

.section__head h2 {
  margin: 0;
  font-size: 1.9rem;
}

.section__head p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card,
.item {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.item + .item {
  margin-top: 16px;
}

.item__meta {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(27, 26, 22, 0.2);
  font-size: 0.8rem;
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.list {
  margin: 12px 0 0;
  padding-left: 16px;
  color: var(--muted);
}

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

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
}

.contact__links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.footer {
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}
