:root {
  --bg: #f7f3ee;
  --bg-soft: #fcfaf7;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-solid: #ffffff;
  --panel-warm: #f2e9df;
  --ink: #1f1b17;
  --muted: #635a53;
  --line: rgba(99, 90, 83, 0.14);
  --line-strong: rgba(111, 88, 68, 0.26);
  --accent: #6f5844;
  --accent-dark: #4f3d31;
  --accent-soft: #b79066;
  --gold: #e4c49b;
  --shadow: 0 24px 80px rgba(40, 28, 17, 0.11);
  --shadow-soft: 0 14px 38px rgba(40, 28, 17, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(205, 171, 136, 0.18), transparent 22%),
    radial-gradient(circle at 90% 8%, rgba(228, 196, 155, 0.18), transparent 18%),
    linear-gradient(180deg, #fcfaf7 0%, #f4eee7 42%, #f8f3ee 100%);
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(111, 88, 68, 0.5);
  box-shadow: 0 0 0 4px rgba(111, 88, 68, 0.09);
}
input[type='file'] {
  padding: 14px;
  background: #fffaf4;
}
textarea { resize: vertical; min-height: 160px; }
label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #403832;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.page-glow-one {
  top: -120px;
  left: -100px;
  background: rgba(183, 144, 102, 0.26);
}
.page-glow-two {
  right: -120px;
  top: 240px;
  background: rgba(111, 88, 68, 0.12);
}

.simple-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(252, 249, 245, 0.72);
  border-bottom: 1px solid rgba(111, 88, 68, 0.08);
}
.simple-header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
.simple-brand {
  display: grid;
  gap: 2px;
}
.brand-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.simple-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.simple-nav a {
  position: relative;
}
.simple-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.simple-nav a:hover::after { transform: scaleX(1); }

.hero-simple,
.simple-section {
  padding: 62px 0;
}
.hero-shell,
.request-shell,
.help-grid {
  display: grid;
  gap: 24px;
}
.hero-main-card,
.request-intro-card,
.form-card,
.info-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-main-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(247,240,232,0.92));
}
.hero-main-copy,
.hero-status-panel,
.request-intro-card,
.form-card,
.info-card {
  backdrop-filter: blur(12px);
}
.hero-main-copy {
  border-radius: 28px;
  padding: 44px;
  background:
    radial-gradient(circle at top right, rgba(228,196,155,0.24), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,245,238,0.94));
  border: 1px solid rgba(111, 88, 68, 0.08);
}
.hero-status-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #5a4637 0%, #3e3128 100%);
  color: #fff8f1;
  position: relative;
  overflow: hidden;
}
.hero-status-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 30%);
  pointer-events: none;
}
.eyebrow,
.section-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}
.section-label-light { color: rgba(255, 248, 241, 0.72); }
h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  max-width: 11ch;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.hero-copy,
.section-copy,
.info-card p,
.simple-list li,
.form-actions small,
.upload-field small,
.status-step p,
.mini-note-card p,
.light-copy {
  color: var(--muted);
  line-height: 1.7;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(111, 88, 68, 0.08);
  border: 1px solid rgba(111, 88, 68, 0.08);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(111, 88, 68, 0.24);
}
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}
.button-secondary {
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
  color: var(--ink);
}

.status-stack {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.status-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.status-step:first-of-type {
  border-top: 0;
  padding-top: 4px;
}
.status-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
}
.status-step strong,
.accent-card p,
.accent-card .section-label { color: #fff8f1; }
.status-step p { margin: 6px 0 0; color: rgba(255,248,241,0.76); }

.hero-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.metric-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(111, 88, 68, 0.1);
  box-shadow: var(--shadow-soft);
}
.metric-label {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
}
.metric-card strong {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.request-shell {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}
.request-intro-card,
.form-card,
.info-card {
  background: rgba(255,255,255,0.78);
}
.request-intro-card {
  padding: 34px;
}
.form-card {
  padding: 28px;
}
.mini-note-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.mini-note-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,238,229,0.9));
  border: 1px solid rgba(111, 88, 68, 0.09);
}
.mini-note-card strong,
.detail-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.full-width { grid-column: 1 / -1; }
.upload-field {
  padding: 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdfa, #f7efe6);
}
.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.form-alert {
  margin-bottom: 16px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}
.form-alert.success {
  background: #eef7ee;
  color: #275c2b;
  border: 1px solid #cde6cf;
}
.form-alert.error {
  background: #fff1f1;
  color: #8b2f2f;
  border: 1px solid #f0cccc;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.32));
  border-top: 1px solid rgba(111,88,68,0.06);
  border-bottom: 1px solid rgba(111,88,68,0.06);
}
.help-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.detail-card {
  padding: 28px;
}
.accent-card {
  background: linear-gradient(180deg, #6d5947 0%, #564436 100%);
  border-color: rgba(255,255,255,0.08);
}
.simple-list {
  margin: 0;
  padding-left: 20px;
}
.enhanced-list li { margin: 12px 0; }

.simple-footer {
  border-top: 1px solid rgba(111,88,68,0.1);
  background: rgba(239, 231, 220, 0.72);
}
.footer-simple-only {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-main-card,
  .hero-metrics-row,
  .request-shell,
  .help-grid,
  .request-form {
    grid-template-columns: 1fr;
  }
  .hero-main-copy,
  .hero-status-panel,
  .request-intro-card,
  .form-card,
  .info-card {
    padding: 24px;
  }
  h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .simple-header-inner,
  .footer-inner,
  .simple-nav,
  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }
  .simple-header-inner,
  .footer-inner {
    min-height: auto;
    padding: 16px 0;
  }
  .brand-name {
    font-size: 20px;
  }
  .hero-simple,
  .simple-section {
    padding: 38px 0;
  }
  .hero-main-card {
    padding: 14px;
    border-radius: 28px;
  }
  .hero-main-copy,
  .hero-status-panel,
  .request-intro-card,
  .form-card,
  .info-card {
    border-radius: 22px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 30px;
  }
  .button-primary,
  .button-secondary {
    width: 100%;
  }
  .page-glow {
    display: none;
  }
}
