* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #1a0e08;
  --parchment: #f0e6d0;
  --gold: #c9a96e;
  --gold-dim: #8b6a3a;
  --bark: #5a3e28;
  --ash: #2e2018;
  --fog: rgba(180, 150, 100, 0.06);
  --text-body: #d4c4a8;
  --text-muted: #8a7a62;
}

html, body {
  min-height: 100%;
}

body {
  background-color: #0b0703;
  background-image:
    radial-gradient(ellipse at 50% 0%, #1e0f04 0%, transparent 65%),
    radial-gradient(ellipse at 20% 60%, #120800 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, #0e0a04 0%, transparent 50%);
  color: var(--text-body);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  text-align: center;
  overflow-x: hidden;
  cursor: crosshair;
}

/* Stars canvas */
canvas#stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Smoke */
.smoke-layer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0%,
    rgba(20, 10, 4, 0.08) 50%,
    transparent 100%
  );
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* Everything above canvas */
header, section, footer, .lang-toggle, .hex-rule, .botanical {
  position: relative;
  z-index: 2;
}

/* Floating herbs */
.herb {
  position: fixed;
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  font-size: 10px;
  animation: floatHerb 12s ease-in-out infinite;
}
.herb-1 { left: 8%; animation-delay: 0s; animation-duration: 14s; }
.herb-2 { left: 90%; animation-delay: 5s; animation-duration: 18s; }
.herb-3 { left: 50%; animation-delay: 9s; animation-duration: 16s; }

@keyframes floatHerb {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.3; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* Lang toggle */
.lang-toggle {
  position: fixed;
  top: 18px; right: 18px;
  z-index: 10;
}
.lang-toggle button {
  background: transparent;
  border: 1px solid var(--bark);
  color: var(--text-muted);
  margin: 2px;
  padding: 4px 10px;
  cursor: pointer;
  font-family: 'IM Fell English', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.lang-toggle button:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

/* Header */
header {
  padding: 80px 20px 50px;
}

.eye-of-providence {
  width: 90px;
  margin: 0 auto 28px;
  opacity: 0.7;
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.04); }
}

.title-block {
  margin-bottom: 22px;
}

.title-ornament {
  font-family: 'IM Fell English', serif;
  color: var(--gold-dim);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  margin: 6px 0;
  opacity: 0.7;
}

h1 {
  font-family: 'Uncial Antiqua', 'IM Fell English', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--parchment);
  text-shadow:
    0 0 12px rgba(201,169,110,0.25),
    0 0 40px rgba(201,169,110,0.08);
  line-height: 1.25;
  letter-spacing: 0.03em;
  font-weight: 400;
}

h1 em {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 0.75em;
  letter-spacing: 0.08em;
}

header > p {
  margin: 18px auto 28px;
  max-width: 420px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 32px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-family: 'IM Fell English', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.35s;
}

.cta:hover::before { opacity: 0.08; }

.cta:hover {
  border-color: var(--gold);
  color: var(--parchment);
  box-shadow: 0 0 18px rgba(201,169,110,0.18);
}

/* Hex Rule */
.hex-rule {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 20px;
  opacity: 0.6;
}
.hex-rule svg { width: 100%; }

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px 30px;
  gap: 24px;
}

.service {
  background: rgba(20, 12, 5, 0.7);
  border: 1px solid rgba(90,62,40,0.6);
  padding: 30px 22px 26px;
  width: 210px;
  position: relative;
  transition: 0.4s;
}

.service::before,
.service::after {
  content: '✦';
  position: absolute;
  font-size: 8px;
  color: var(--gold-dim);
  opacity: 0.5;
}
.service::before { top: 8px; left: 10px; }
.service::after  { bottom: 8px; right: 10px; }

.service:hover {
  border-color: rgba(201,169,110,0.4);
  background: rgba(30, 18, 8, 0.85);
  transform: translateY(-4px);
}

.service:hover .service-sigil svg {
  filter: drop-shadow(0 0 6px rgba(201,169,110,0.3));
}

.service-sigil {
  width: 46px;
  margin: 0 auto 14px;
  opacity: 0.6;
  transition: 0.4s;
}

.service h2 {
  font-family: 'IM Fell English', serif;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.service p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* Botanical */
.botanical {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 10px;
  opacity: 0.8;
}
.botanical svg { width: 100%; }

/* Trust */
.trust {
  margin: 20px 0;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Footer */
footer {
  padding: 36px 20px 50px;
}

.candles {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 22px;
  font-size: 1.5rem;
  color: var(--gold-dim);
}

.candle {
  display: inline-block;
  animation: flicker var(--delay, 0s) ease-in-out;
  animation: flicker 2.5s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0.5;
}

@keyframes flicker {
  0%, 100% { opacity: 0.4; transform: scaleY(1)   translateY(0); }
  25%       { opacity: 0.6; transform: scaleY(1.04) translateY(-1px); }
  50%       { opacity: 0.35; transform: scaleY(0.97) translateY(1px); }
  75%       { opacity: 0.55; transform: scaleY(1.02) translateY(0); }
}

.footer-note {
  margin-top: 18px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .services { gap: 16px; }
  .service { width: 90%; max-width: 280px; }
}