/* Here Shroom — site-specific styles */

body.hereshroom {
  --accent: #2a8a44;
  --accent-fill: #6cc477;
  --accent-soft: rgba(108, 196, 119, 0.18);
  --text-accent: #1f6a35;
  --gradient-signal: linear-gradient(135deg, #6cc477, #2a8f4c);
  --glow-signal: 0 16px 44px rgba(108, 196, 119, 0.26);
  --focus-ring: rgba(42, 138, 68, 0.42);
}

body.hereshroom::before {
  background:
    radial-gradient(circle at 18% -4%, rgba(108, 196, 119, 0.15), transparent 40%),
    radial-gradient(circle at 92% 6%, rgba(31, 106, 53, 0.12), transparent 42%);
}

.hereshroom-header .site-nav {
  border-bottom-color: rgba(42, 138, 68, 0.16);
}

.hereshroom-brand {
  gap: 10px;
}

.hereshroom-brand .brand-icon {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(42, 138, 68, 0.2);
}

.hereshroom-hero {
  padding: clamp(56px, 9vw, 112px) 0 clamp(42px, 7vw, 76px);
  text-align: center;
}

.hereshroom-hero .hero-content {
  max-width: 640px;
  margin-inline: auto;
}

.hereshroom-hero .hero-icon {
  margin: 0 auto 24px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(42, 138, 68, 0.2);
}

.hereshroom-hero h1 {
  max-width: none;
  margin-bottom: 8px;
  font-size: var(--display-1);
}

.hereshroom-hero .tagline {
  margin-bottom: 12px;
  color: var(--text-accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hereshroom-hero p {
  max-width: 480px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.content-section {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--border-subtle);
}

.content-section h2 {
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-image {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: var(--surface-inset);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.safety-section {
  background: linear-gradient(135deg, rgba(224, 169, 46, 0.06), rgba(207, 106, 74, 0.04));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  margin-top: 24px;
  border-top: none;
}

.safety-content {
  max-width: 680px;
}

.safety-content p {
  margin-bottom: 14px;
}

.safety-content ul {
  margin: 0 0 18px 20px;
  padding: 0;
}

.safety-content li {
  margin-bottom: 8px;
  color: var(--text-body);
}

.safety-content p:last-child {
  margin-bottom: 0;
  color: var(--text-accent);
  font-weight: 600;
}

.hereshroom-footer {
  border-top-color: rgba(42, 138, 68, 0.16);
}

@media (max-width: 720px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hereshroom-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
