/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #f5f1ea;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --text: #24302a;
  --muted: #66736d;
  --line: #ded5c8;
  --primary: #1f6f54;
  --primary-strong: #15533f;
  --secondary: #c9a46a;
  --accent: #7a8f7b;
  --shadow: 0 18px 40px rgba(36, 48, 42, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31, 111, 84, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(201, 164, 106, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
}

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

main {
  width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.shell {
  padding: 1.25rem 0 3rem;
}

.topbar,
.footer,
.hero,
.panel,
.section {
  background: rgba(255, 253, 249, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(222, 213, 200, 0.9);
  box-shadow: var(--shadow);
}

.topbar,
.footer {
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand span,
.kicker,
.section-note,
.muted {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
  font-size: 0.95rem;
  align-items: center;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 220px;
  padding: 0.6rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  display: grid;
  grid-gap: 0.35rem;
  gap: 0.35rem;
  z-index: 20;
}

.nav-menu a {
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
}

.nav-menu a:hover {
  background: rgba(31, 111, 84, 0.08);
}

.hero {
  border-radius: 32px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.97;
  margin: 0.2rem 0 1rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button,
.button-secondary,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.button {
  background: var(--primary);
  color: white;
}

.button-secondary,
.pill {
  background: #fff;
  border-color: var(--line);
}

.hero-card {
  background: linear-gradient(180deg, rgba(31, 111, 84, 0.95), rgba(21, 83, 63, 0.96));
  color: #fff;
  border-radius: 26px;
  padding: 1.4rem;
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  align-content: space-between;
}

.hero-card .metric {
  display: grid;
  grid-gap: 0.2rem;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.grid-3,
.grid-2 {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section,
.panel {
  border-radius: 28px;
  padding: 1.5rem;
}

.section {
  margin-top: 1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.section h2 {
  margin: 0;
  font-size: 1.65rem;
}

.card,
.list-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.card h3,
.list-item strong {
  margin: 0 0 0.35rem;
}

.card p,
.list-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stack {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
}

.sidebar,
.admin-content {
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(222, 213, 200, 0.95);
  box-shadow: var(--shadow);
}

.sidebar {
  padding: 1rem;
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  height: -moz-fit-content;
  height: fit-content;
}

.sidebar nav {
  display: grid;
  grid-gap: 0.4rem;
  gap: 0.4rem;
  margin-top: 1rem;
}

.sidebar a {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
}

.sidebar a[data-active="true"] {
  background: rgba(31, 111, 84, 0.1);
  color: var(--primary-strong);
  font-weight: 700;
}

.admin-content {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.field {
  display: grid;
  grid-gap: 0.45rem;
  gap: 0.45rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: white;
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.table-like {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.admin-banner {
  display: grid;
  grid-gap: 0.3rem;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 960px) {
  .hero,
  .grid-3,
  .grid-2,
  .admin-shell,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sidebar {
    position: static;
  }
}

