:root {
  --bg: #fbf2ed;
  --paper: #fff8f2;
  --ink: #2c1a12;
  --muted: #6f5548;
  --line: #e5cab8;
  --accent: #b7410e;
  --accent-soft: #f8e2d8;
  --accent-strong: #8e2f07;
  --sand: #f2ad78;
  --radius: 16px;
  --shadow: 0 12px 28px rgba(75, 33, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(140% 80% at 20% -10%, #f6dece 0%, transparent 58%),
    radial-gradient(120% 80% at 100% 0%, #ffd7c3 0%, transparent 48%),
    var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1140px, 92vw);
  margin: 1.2rem auto 2rem;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  background: color-mix(in srgb, var(--paper), white 35%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 0.7rem 0.6rem 1rem;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(60, 28, 16, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--accent), #df7a45);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid #fff2e8;
  border-radius: 6px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff6f1;
  padding: 0.7rem 1.1rem;
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
}

.btn-outline:hover {
  border-color: #b9b1a3;
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  margin-top: 1.1rem;
}

.hero-main,
.hero-side {
  background: linear-gradient(165deg, var(--paper), #fffdfa 68%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.hero-main {
  padding: 2.4rem 2.2rem 2.3rem;
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -140px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffd8c4 0%, rgba(255, 216, 196, 0) 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a3f24;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-weight: 700;
}

.hero h1 {
  margin: 1.1rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.hero-cta {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.kpis {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.kpi strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.kpi span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-side {
  padding: 1rem;
  display: grid;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 0.9rem;
}

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff5ed, #fff);
  border-radius: var(--radius);
  padding: 1rem;
}

.panel h3 {
  margin: 0;
  font-size: 0.95rem;
}

.status-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.status-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
  background: #fff8f3;
}

.status-item strong {
  font-size: 1.05rem;
}

.status-item span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.list li + li {
  margin-top: 0.4rem;
}

.section {
  margin-top: 1.1rem;
  background: linear-gradient(180deg, #fff9f4, #fff3ea);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.3rem;
  box-shadow: 0 8px 24px rgba(56, 25, 14, 0.1);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
}

.section p {
  color: var(--muted);
}

.cards {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
}

.cta-band {
  margin-top: 1.1rem;
  background: linear-gradient(120deg, #7f2a08, #b7410e 55%, #d3642f);
  color: #fff4eb;
  border-radius: var(--radius);
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-band h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
}

.cta-band p {
  margin: 0.45rem 0 0;
  max-width: 60ch;
  color: #ffd8c4;
}

.cta-band .btn {
  margin-top: 0.95rem;
  background: #ffd2b8;
  color: #4a1d09;
}

.cta-band .btn:hover {
  background: #ffc3a1;
}

.site-footer {
  text-align: center;
  margin-top: 1rem;
  color: #667275;
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 650ms ease forwards;
}

[data-reveal="1"] {
  animation-delay: 70ms;
}

[data-reveal="2"] {
  animation-delay: 140ms;
}

[data-reveal="3"] {
  animation-delay: 210ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-main {
    padding: 1.8rem 1.2rem;
  }

  .kpis {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding: 0.8rem;
    position: static;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    font-size: 0.86rem;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .hero h1 {
    line-height: 1;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    flex: 1 1 170px;
  }

  .kpis {
    grid-template-columns: 1fr;
  }
}
