/* ==============================
   Root Variables
============================== */
:root {
  --forest: #1a4a22;
  --moss: #2d6e37;
  --sage: #5a9e65;
  --mist: #e8f0e9;
  --cream: #f7f9f7;
  --bark: #2c2c2a;
  --stone: #8a8f87;
  --accent: #d4e8d6;
}

/* ==============================
   Global Reset
============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==============================
   Body
============================== */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90,158,101,0.12) 0%, transparent 70%);
}

body::after {
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,110,55,0.08) 0%, transparent 70%);
}

.container {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  padding: 0 24px;
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.header {
  margin-bottom: 52px;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--sage);
  border-radius: 2px;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 6vw, 52px);
  color: var(--forest);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  color: var(--moss);
}

.subtitle {
  margin-top: 14px;
  font-size: 15px;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.6;
}

.guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-list li {
  border-top: 1px solid rgba(42,110,55,0.12);
  animation: fadeUp 0.7s ease both;
}

.guide-list li:last-child {
  border-bottom: 1px solid rgba(42,110,55,0.12);
}

.guide-list li:nth-child(1) { animation-delay: 0.1s; }
.guide-list li:nth-child(2) { animation-delay: 0.18s; }
.guide-list li:nth-child(3) { animation-delay: 0.26s; }

.guide-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  text-decoration: none;
  color: var(--bark);
  font-size: 16px;
  font-weight: 400;
  position: relative;
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.guide-list a .label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.guide-list a .num {
  font-family: 'DM Serif Display', serif;
  font-size: 11px;
  color: var(--sage);
  min-width: 18px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.guide-list a .arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.guide-list a .arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--moss);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.guide-list a:hover {
  color: var(--forest);
  padding-left: 6px;
}

.guide-list a:hover .arrow {
  background: var(--forest);
  transform: translateX(3px);
}

.guide-list a:hover .arrow svg {
  stroke: #fff;
}

.guide-list a:hover .num {
  opacity: 1;
}

.footer {
  margin-top: 48px;
  padding-top: 24px;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.back-shopmetro {
  text-align: left;
  margin: 20px 0 10px;
}

.back-shopmetro a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: 0.2s;
}

.back-shopmetro a:hover {
  color: #000;
  text-decoration: underline;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1 { font-size: 36px; }
}