:root {
  --bg: #09090b;
  --bg-soft: #111014;
  --paper: #efe8db;
  --muted: #b8aa98;
  --gold: #c6a878;
  --gold-soft: #8b7558;
  --purple: #674883;
  --purple-bright: #8b62a8;
  --border: rgba(198, 168, 120, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  z-index: 50;
  background-image: radial-gradient(rgba(255,255,255,.16) .6px, transparent .6px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 92px 1fr 92px;
  align-items: center;
  padding: 0 4vw;
  z-index: 40;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,8,10,.82);
  backdrop-filter: blur(14px);
  border-color: rgba(198,168,120,.14);
}
.brand-mark {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.brand-mark::after { transform: rotate(90deg); }
.brand-mark:hover { transform: rotate(8deg) scale(1.04); box-shadow: 0 0 30px rgba(139,98,168,.25); }
.brand-rune { font-family: "Cormorant Garamond", serif; font-weight: 700; color: var(--gold); letter-spacing: .08em; }
.main-nav { display: flex; justify-content: center; gap: clamp(18px, 2.4vw, 42px); }
.main-nav a {
  position: relative;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .17em;
  color: #d7cec1;
  padding: 12px 0;
  transition: color .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 3px;
  height: 1px;
  background: var(--gold);
  transition: left .3s ease, right .3s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff4df; }
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.language-switch { display: flex; justify-content: flex-end; align-items: center; gap: 7px; color: var(--gold-soft); font-size: .72rem; letter-spacing: .12em; }
.lang { background: none; border: 0; color: #a79a8a; cursor: pointer; padding: 8px 3px; }
.lang.active, .lang:hover { color: var(--gold); }
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 130px 8vw 90px;
  background: #09090b;
  overflow: hidden;
}

/* Immagine di sfondo separata e realmente schiarita */
.hero::after {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(1.85) saturate(1.08) contrast(1.02);
  transform: scale(1.02);
}

/* Velo molto leggero solo per proteggere la leggibilità del testo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(5,5,7,.30) 0%,
      rgba(5,5,7,.16) 28%,
      rgba(5,5,7,.05) 50%,
      rgba(5,5,7,0) 70%),
    linear-gradient(to bottom,
      rgba(9,9,11,0) 82%,
      rgba(9,9,11,.45) 100%);
}
.hero-content { width: min(680px, 92%); position: relative; z-index: 4; }
.ornament { width: 270px; display: flex; align-items: center; gap: 12px; color: var(--gold); margin-bottom: 28px; opacity: .9; }
.ornament span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.ornament span:last-child { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.eyebrow { text-transform: uppercase; letter-spacing: .23em; font-size: .68rem; color: var(--gold); margin: 0 0 18px; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; }
h1 {
  margin: 0;
  font-size: clamp(4.8rem, 9vw, 9rem);
  line-height: .72;
  text-transform: uppercase;
  letter-spacing: .015em;
  font-weight: 600;
  text-shadow: 0 9px 40px rgba(0,0,0,.5);
}
h1 span { margin-left: .25em; }
.tagline { font-family: "Libre Caslon Display", serif; text-transform: uppercase; color: var(--gold); font-size: clamp(1rem, 1.7vw, 1.45rem); letter-spacing: .11em; margin: 35px 0 12px; }
.subtitle { font-family: "Cormorant Garamond", serif; color: #d4c8ba; font-size: 1.25rem; font-style: italic; margin: 0 0 38px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  min-width: 205px;
  padding: 17px 24px;
  display: inline-flex;
  justify-content: center;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: linear-gradient(180deg, rgba(103,72,131,.92), rgba(53,33,71,.95)); border-color: rgba(165,124,191,.5); box-shadow: 0 12px 35px rgba(77,45,98,.22); }
.btn-primary::before { background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(139,98,168,.45)); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(139,98,168,.42), 0 15px 40px rgba(0,0,0,.35); border-color: rgba(196,160,219,.8); }
.btn-ghost { background: rgba(10,10,12,.38); border-color: var(--gold-soft); color: #e5d9c8; }
.btn-ghost::before { background: rgba(198,168,120,.11); }
.btn-ghost:hover { border-color: var(--gold); box-shadow: 0 0 25px rgba(198,168,120,.12); }
.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  opacity: .82;
}
.arrow { animation: floatArrow 1.7s ease-in-out infinite; font-size: 1.1rem; }
@keyframes floatArrow { 0%,100%{transform:translateY(-2px)} 50%{transform:translateY(5px)} }

.mist { position: fixed; pointer-events: none; z-index: 3; filter: blur(38px); opacity: .16; border-radius: 50%; background: radial-gradient(circle, rgba(103,72,131,.9), rgba(103,72,131,0)); }
.mist-1 { width: 460px; height: 240px; left: -120px; top: 30%; animation: driftOne 16s ease-in-out infinite alternate; }
.mist-2 { width: 560px; height: 260px; right: -250px; top: 48%; animation: driftTwo 21s ease-in-out infinite alternate; }
@keyframes driftOne { to { transform: translate(160px,-60px) scale(1.18); opacity:.24; } }
@keyframes driftTwo { to { transform: translate(-190px,80px) scale(.9); opacity:.09; } }

.paths-section, .grimoire-section {
  padding: 110px 6vw;
  background: #0b0b0e;
  position: relative;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 62px;
}

.section-heading h2, .story-copy h2 {
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  margin: 0 0 14px;
  font-weight: 600;
}

.section-heading > p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

/* CHOOSE YOUR PATH - photographic category cards */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
}

.path-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,168,120,.26);
  background: #09090b;
  isolation: isolate;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    box-shadow .45s ease;
}

.path-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(.82) saturate(.92);
  transform: scale(1.015);
  transition:
    transform 1.1s cubic-bezier(.2,.7,.2,1),
    filter .55s ease;
}

/* Individual crop tuning */
.path-ouija .path-bg { object-position: 52% center; }
.path-runes .path-bg { object-position: 54% center; }
.path-books .path-bg { object-position: 50% center; }
.path-altar .path-bg { object-position: 50% center; }

.path-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to top,
      rgba(6,6,8,.97) 0%,
      rgba(6,6,8,.76) 31%,
      rgba(6,6,8,.22) 68%,
      rgba(6,6,8,.08) 100%),
    linear-gradient(135deg,
      rgba(103,72,131,.10),
      transparent 48%);
  transition: opacity .45s ease, background .45s ease;
}

.path-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(198,168,120,0);
  z-index: 3;
  transition: border-color .4s ease, box-shadow .4s ease;
}

.path-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 30px 32px;
  z-index: 2;
  transform: translateY(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.path-index {
  color: var(--gold);
  font-size: .66rem;
  letter-spacing: .22em;
  margin: 0 0 8px;
  opacity: .9;
}

.path-card h3 {
  font-size: clamp(2rem, 2.3vw, 2.65rem);
  line-height: 1;
  margin: 0 0 14px;
  color: #f3ecdf;
  text-shadow: 0 4px 22px rgba(0,0,0,.8);
}

.path-content > p:not(.path-index) {
  color: #c7bbaa;
  line-height: 1.65;
  font-size: .86rem;
  margin: 0;
  max-width: 31ch;
}

.path-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .66rem;
  letter-spacing: .14em;
  position: relative;
}

.path-card a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--purple-bright));
  transition: right .35s ease;
}

.path-card a span {
  display: inline-block;
  transition: transform .3s ease;
}

.path-card:hover {
  transform: translateY(-9px);
  border-color: rgba(198,168,120,.72);
  box-shadow:
    0 24px 60px rgba(0,0,0,.42),
    0 0 30px rgba(103,72,131,.13);
}

.path-card:hover .path-bg {
  transform: scale(1.085);
  filter: brightness(1.02) saturate(1.02);
}

.path-card:hover .path-shade {
  background:
    linear-gradient(to top,
      rgba(6,6,8,.95) 0%,
      rgba(6,6,8,.65) 30%,
      rgba(6,6,8,.12) 70%,
      rgba(6,6,8,.02) 100%),
    linear-gradient(135deg,
      rgba(103,72,131,.18),
      transparent 52%);
}

.path-card:hover::after {
  border-color: rgba(198,168,120,.30);
  box-shadow: inset 0 0 28px rgba(103,72,131,.08);
}

.path-card:hover .path-content {
  transform: translateY(-5px);
}

.path-card:hover a::after {
  right: 0;
}

.path-card a:hover span {
  transform: translate(5px,-4px);
}

.story-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; background: linear-gradient(115deg,#0a0a0c 0%,#121016 100%); border-top: 1px solid rgba(255,255,255,.03); }
.story-copy { padding: 110px 8vw; display: flex; flex-direction: column; justify-content: center; }
.story-copy > p:not(.eyebrow) { max-width: 660px; color: var(--muted); line-height: 1.85; }
.text-link { margin-top: 22px; text-transform: uppercase; color: var(--gold); font-size: .7rem; letter-spacing: .16em; }
.process-panel { display: grid; grid-template-columns: 1fr 1fr; background: rgba(255,255,255,.015); border-left: 1px solid var(--border); }
.process-panel div { padding: 48px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; flex-direction: column; justify-content: flex-end; min-height: 350px; transition: background .3s ease; }
.process-panel div:hover { background: rgba(103,72,131,.08); }
.process-panel span { color: var(--gold-soft); font-size: .68rem; letter-spacing: .2em; }
.process-panel strong { font-family:"Cormorant Garamond",serif; font-size:2.3rem; margin:12px 0 7px; }
.process-panel small { color:var(--muted); }

.grimoire-section { background:#0a0a0c; }
.article-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1250px; margin:auto; }
.article-card { min-height:270px; padding:32px; border:1px solid var(--border); background:linear-gradient(150deg,rgba(255,255,255,.018),rgba(103,72,131,.03)); transition: transform .3s ease,border-color .3s ease; }
.article-card:hover { transform:translateY(-6px); border-color:rgba(198,168,120,.5); }
.article-card > span { color:var(--gold); text-transform:uppercase; font-size:.64rem; letter-spacing:.16em; }
.article-card h3 { font-size:2rem; line-height:1.1; margin:26px 0 35px; }
.article-card a { color:var(--muted); font-size:.72rem; text-transform:uppercase; letter-spacing:.13em; }

footer { min-height:210px; padding:55px 6vw; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:30px; border-top:1px solid var(--border); background:#070708; color:var(--muted); }
footer strong { font-family:"Cormorant Garamond",serif; color:var(--paper); font-size:1.8rem; }
footer p { margin:6px 0 0; }
.footer-links { display:flex; gap:24px; text-transform:uppercase; font-size:.66rem; letter-spacing:.13em; }
.footer-links a:hover { color:var(--gold); }
.copyright { justify-self:end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 70px 1fr 70px; }
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: min(370px, 86vw); flex-direction: column; justify-content: center; align-items: flex-start; padding: 60px; background: rgba(8,8,10,.97); backdrop-filter: blur(16px); transition: right .35s ease; }
  .main-nav.open { right: 0; }
  .main-nav a { font-size:.85rem; }
  .menu-toggle { display:flex; flex-direction:column; justify-self:center; gap:5px; background:none; border:0; cursor:pointer; z-index:45; }
  .menu-toggle span { width:28px; height:1px; background:var(--paper); transition:.3s; }
  .language-switch { justify-self:end; }
  .path-grid { grid-template-columns:1fr 1fr; }
  .path-card { min-height:430px; }
  .story-section { grid-template-columns:1fr; }
  .process-panel { border-left:0; }
  .article-grid { grid-template-columns:1fr; }
  footer { grid-template-columns:1fr; text-align:center; }
  .copyright { justify-self:center; }
  .footer-links { justify-content:center; flex-wrap:wrap; }
}

@media (max-width: 640px) {
  .site-header { min-height:72px; padding:0 22px; grid-template-columns:54px 1fr 54px; }
  .brand-mark { width:44px; height:44px; }
  .language-switch { display:none; }
  .menu-toggle { justify-self:end; }
  .hero { padding:120px 24px 100px; align-items:flex-end; background-position:63% center; }
  .hero-content { width:100%; }
  .ornament { width:190px; }
  h1 { font-size:clamp(4rem,20vw,6.6rem); }
  h1 span { margin-left:0; }
  .tagline { font-size:.95rem; line-height:1.6; }
  .hero-actions { flex-direction:column; }
  .btn { width:100%; }
  .scroll-cue { width:100%; justify-content:center; font-size:.6rem; }
  .paths-section,.grimoire-section { padding:80px 22px; }
  .path-grid { grid-template-columns:1fr; gap:16px; }
  .path-card { min-height:430px; }
  .path-content { padding:30px 26px 28px; }
  .story-copy { padding:80px 24px; }
  .process-panel { grid-template-columns:1fr; }
  .process-panel div { min-height:220px; padding:32px 24px; border-right:0; }
  .article-card { padding:26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}

/* CUSTOM CREATIONS */
.custom-page{background:#09090b}.custom-hero{min-height:88svh;position:relative;overflow:hidden;display:flex;align-items:center;padding:150px 8vw 90px;background:radial-gradient(circle at 78% 45%,rgba(103,72,131,.22),transparent 28%),radial-gradient(circle at 24% 55%,rgba(198,168,120,.08),transparent 35%),linear-gradient(135deg,#08080a 0%,#101015 58%,#09090b 100%)}.custom-hero-inner{width:min(900px,92%);position:relative;z-index:2}.custom-hero h1{font-size:clamp(4.1rem,8.3vw,8.4rem);line-height:.86;letter-spacing:-.045em;font-weight:500;margin:22px 0 30px;max-width:9ch}.custom-hero h1 em{color:var(--gold);font-weight:400}.custom-lead{max-width:720px;color:#c9c0b4;font-size:1.05rem;line-height:1.85}.custom-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}.custom-sigil{position:absolute;right:10vw;top:50%;transform:translateY(-50%);font-size:clamp(12rem,25vw,28rem);color:rgba(198,168,120,.055);line-height:1}.custom-intro{padding:120px 8vw;display:grid;grid-template-columns:minmax(0,1.5fr) minmax(280px,.65fr);gap:8vw;max-width:1500px;margin:auto}.custom-intro h2,.custom-cta h2{font-size:clamp(3rem,5.5vw,6rem);line-height:.98;margin:14px 0 28px;font-weight:500}.custom-intro-copy>p:not(.eyebrow){color:var(--muted);line-height:1.9;max-width:800px}.custom-note{align-self:center;border:1px solid var(--border);padding:36px;background:linear-gradient(145deg,rgba(103,72,131,.10),rgba(255,255,255,.015))}.custom-note span,.custom-step span{color:var(--gold);font-size:.68rem;letter-spacing:.2em}.custom-note h3,.custom-step h3{font-size:2rem;margin:14px 0 12px}.custom-note p,.custom-step p,.possibility p{color:var(--muted);line-height:1.75}.custom-process{padding:115px 6vw 125px;background:#0c0c10}.custom-steps{max-width:1500px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.custom-step{padding:42px 30px 46px;border-right:1px solid var(--border);min-height:300px}.custom-step:last-child{border-right:0}.custom-step:hover{background:linear-gradient(to bottom,rgba(103,72,131,.09),transparent)}.custom-possibilities{padding:120px 7vw}.possibility-grid{max-width:1350px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--border);border:1px solid var(--border)}.possibility{background:#0a0a0d;padding:40px}.possibility:hover{background:#101016}.possibility strong{display:block;color:#f1e9dd;font-family:Georgia,serif;font-size:1.75rem;font-weight:400}.custom-caveat{max-width:900px;margin:38px auto 0;text-align:center;color:#9d9388;line-height:1.8;font-style:italic}.custom-cta{padding:125px 7vw;text-align:center;background:radial-gradient(circle at center,rgba(103,72,131,.18),transparent 38%),#08080a;border-top:1px solid var(--border)}.custom-cta-inner{max-width:900px;margin:auto}.custom-cta p{color:var(--muted)}.custom-cta .btn{margin-top:20px}.custom-small{margin-top:25px;font-size:.78rem;letter-spacing:.06em}@media(max-width:980px){.custom-intro{grid-template-columns:1fr}.custom-steps{grid-template-columns:1fr 1fr}}@media(max-width:680px){.custom-hero{padding:125px 6vw 75px;min-height:82svh}.custom-hero h1{font-size:clamp(3.6rem,18vw,5.6rem)}.custom-intro,.custom-process,.custom-possibilities,.custom-cta{padding-left:6vw;padding-right:6vw}.custom-steps,.possibility-grid{grid-template-columns:1fr}.custom-step{border-right:0;border-bottom:1px solid var(--border)}.custom-actions .btn{width:100%;text-align:center}}

/* ABOUT PAGE */
.about-page{background:#09090b}.about-hero{min-height:92svh;position:relative;overflow:hidden;display:flex;align-items:center;padding:150px 8vw 100px;background:radial-gradient(circle at 78% 38%,rgba(103,72,131,.20),transparent 30%),radial-gradient(circle at 24% 62%,rgba(198,168,120,.07),transparent 34%),linear-gradient(135deg,#08080a 0%,#101015 55%,#09090b 100%)}.about-hero-inner{width:min(980px,92%);position:relative;z-index:2}.about-hero h1{font-size:clamp(4rem,7.7vw,8.2rem);line-height:.88;letter-spacing:-.045em;font-weight:500;margin:20px 0 30px;max-width:11ch}.about-hero h1 em{color:var(--gold);font-weight:400}.about-lead{max-width:780px;color:#c9c0b4;font-size:1.05rem;line-height:1.9}.about-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}.about-ghost-symbol{position:absolute;right:8vw;top:50%;transform:translateY(-50%);font-size:clamp(14rem,29vw,32rem);line-height:1;color:rgba(198,168,120,.052);user-select:none}.about-story-block{max-width:1500px;margin:auto;padding:130px 8vw;display:grid;grid-template-columns:120px minmax(0,1fr);gap:5vw;border-bottom:1px solid rgba(198,168,120,.10)}.about-story-number{color:rgba(198,168,120,.24);font-family:"Cormorant Garamond",serif;font-size:clamp(4rem,7vw,7rem);line-height:1}.about-story-copy{max-width:920px}.about-story-copy h2,.about-name-card h2,.about-sardinia h2,.about-passion h2{font-size:clamp(3rem,5.2vw,5.7rem);line-height:.98;margin:12px 0 30px;font-weight:500}.about-story-copy p,.about-name-card p,.about-sardinia p,.about-passion p{color:var(--muted);line-height:1.9;font-size:1rem}.about-emphasis{margin:34px 0;padding-left:24px;border-left:1px solid var(--gold);color:#dfd4c4!important;font-family:"Cormorant Garamond",serif;font-size:1.5rem!important;font-style:italic}.about-name-section{padding:120px 8vw;background:radial-gradient(circle at 72% 40%,rgba(103,72,131,.12),transparent 28%),#0b0b0e}.about-name-card{max-width:1050px;margin:auto;border:1px solid var(--border);padding:60px;background:linear-gradient(145deg,rgba(255,255,255,.018),rgba(103,72,131,.055))}.about-name-line{color:var(--gold)!important;font-family:"Cormorant Garamond",serif;font-size:1.7rem!important;font-style:italic;margin-top:32px!important}.about-manifesto{padding:140px 8vw;text-align:center;background:#08080a;border-top:1px solid rgba(255,255,255,.02);border-bottom:1px solid rgba(255,255,255,.02)}.about-manifesto-inner{max-width:1200px;margin:auto}.about-manifesto blockquote{margin:25px auto 0;font-family:"Cormorant Garamond",serif;font-size:clamp(2.6rem,4.5vw,5rem);line-height:1.12;color:#e9dfd0;font-style:italic}.about-manifesto blockquote strong{color:var(--gold);font-weight:500}.about-process{padding:125px 6vw;background:#0c0c10}.about-process-grid{max-width:1500px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.about-process-step{padding:42px 30px 46px;border-right:1px solid var(--border);min-height:315px;position:relative}.about-process-step:last-child{border-right:0}.about-process-step span{color:var(--gold);font-size:.68rem;letter-spacing:.2em}.about-process-step h3{font-size:2rem;margin:16px 0 12px}.about-process-step p{color:var(--muted);line-height:1.75}.about-process-step:hover{background:linear-gradient(to bottom,rgba(103,72,131,.09),transparent)}.about-sardinia{padding:145px 8vw;background:radial-gradient(circle at 20% 55%,rgba(198,168,120,.07),transparent 25%),radial-gradient(circle at 80% 45%,rgba(103,72,131,.12),transparent 25%),#09090b}.about-sardinia-inner{max-width:1000px;margin:auto}.about-sardinia-lines{margin-top:38px;padding-top:26px;border-top:1px solid var(--border)}.about-sardinia-lines p{font-family:"Cormorant Garamond",serif;font-size:1.55rem;color:#ddd2c2!important;margin:10px 0;font-style:italic}.about-passion{padding:145px 8vw;text-align:center;background:#08080a;border-top:1px solid rgba(198,168,120,.10)}.about-passion-inner{max-width:920px;margin:auto}.about-passion-final{margin:48px auto 0!important;font-family:"Cormorant Garamond",serif;font-size:clamp(1.65rem,2.4vw,2.5rem)!important;line-height:1.45!important;color:#e7ddcf!important}.about-passion-final strong{color:var(--gold)}.about-final-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:40px}@media(max-width:980px){.about-story-block{grid-template-columns:1fr;gap:18px}.about-story-number{font-size:3rem}.about-process-grid{grid-template-columns:1fr 1fr}}@media(max-width:680px){.about-hero{padding:125px 6vw 80px;min-height:84svh}.about-hero h1{font-size:clamp(3.5rem,17vw,5.5rem)}.about-story-block,.about-name-section,.about-manifesto,.about-process,.about-sardinia,.about-passion{padding-left:6vw;padding-right:6vw}.about-name-card{padding:34px 26px}.about-process-grid{grid-template-columns:1fr}.about-process-step{border-right:0;border-bottom:1px solid var(--border)}.about-actions .btn,.about-final-actions .btn{width:100%;text-align:center}}


/* =========================================================
   THE GRIMOIRE PAGE
   ========================================================= */
.grimoire-page{background:#09090b}
.grimoire-hero{
  min-height:90svh;position:relative;overflow:hidden;display:flex;align-items:center;
  padding:150px 8vw 100px;
  background:
    radial-gradient(circle at 76% 38%,rgba(103,72,131,.20),transparent 30%),
    radial-gradient(circle at 22% 64%,rgba(198,168,120,.065),transparent 34%),
    linear-gradient(135deg,#08080a 0%,#101015 56%,#09090b 100%);
}
.grimoire-hero-inner{width:min(980px,92%);position:relative;z-index:2}
.grimoire-hero h1{
  font-size:clamp(4rem,7.7vw,8.4rem);line-height:.88;letter-spacing:-.045em;
  font-weight:500;margin:20px 0 30px;max-width:10ch;
}
.grimoire-hero h1 em{color:var(--gold);font-weight:400}
.grimoire-lead{max-width:760px;color:#c9c0b4;font-size:1.05rem;line-height:1.9}
.grimoire-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.grimoire-ghost-rune{
  position:absolute;right:7vw;top:51%;transform:translateY(-50%);
  font-family:"Cormorant Garamond",serif;font-size:clamp(17rem,33vw,35rem);
  line-height:1;color:rgba(198,168,120,.045);user-select:none;
}
.grimoire-intro{padding:120px 8vw;border-bottom:1px solid rgba(198,168,120,.10)}
.grimoire-intro-copy{max-width:980px;margin:auto;text-align:center}
.grimoire-intro h2,.grimoire-closing h2{
  font-size:clamp(3rem,5.2vw,5.8rem);line-height:.98;margin:14px 0 28px;font-weight:500
}
.grimoire-intro p:not(.eyebrow),.grimoire-closing p{
  color:var(--muted);line-height:1.9;max-width:840px;margin-left:auto;margin-right:auto
}
.grimoire-library{padding:125px 6vw;background:#0b0b0e}
.grimoire-feature-grid{
  max-width:1480px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:20px
}
.grimoire-feature-card{
  position:relative;min-height:470px;padding:38px 34px 36px;
  border:1px solid var(--border);overflow:hidden;
  background:
    radial-gradient(circle at 80% 20%,rgba(103,72,131,.10),transparent 26%),
    linear-gradient(150deg,rgba(255,255,255,.018),rgba(103,72,131,.028));
  transition:transform .35s ease,border-color .35s ease,box-shadow .4s ease
}
.grimoire-feature-card:hover{
  transform:translateY(-8px);border-color:rgba(198,168,120,.56);
  box-shadow:0 24px 60px rgba(0,0,0,.35),0 0 30px rgba(103,72,131,.10)
}
.grimoire-card-symbol{
  font-family:"Cormorant Garamond",serif;font-size:4.8rem;color:rgba(198,168,120,.72);
  line-height:1;margin-bottom:30px
}
.grimoire-card-category{
  color:var(--gold);font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;margin:0 0 12px
}
.grimoire-feature-card h3{font-size:2.4rem;line-height:1.04;margin:0 0 20px}
.grimoire-feature-card>p:not(.grimoire-card-category){
  color:var(--muted);line-height:1.75;font-size:.9rem
}
.grimoire-feature-card a{
  display:inline-block;margin-top:24px;color:var(--gold);font-size:.66rem;
  letter-spacing:.14em;text-transform:uppercase
}
.grimoire-feature-card a span{display:inline-block;transition:transform .25s ease}
.grimoire-feature-card a:hover span{transform:translate(5px,-4px)}

.grimoire-paths{padding:125px 6vw;background:#09090b}
.grimoire-path-grid{
  max-width:1480px;margin:auto;display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--border);border-bottom:1px solid var(--border)
}
.grimoire-path-card{
  padding:40px 30px 44px;min-height:290px;border-right:1px solid var(--border);
  transition:background .3s ease
}
.grimoire-path-card:last-child{border-right:0}
.grimoire-path-card:hover{background:linear-gradient(to bottom,rgba(103,72,131,.08),transparent)}
.grimoire-path-card>span{
  color:var(--gold-soft);font-size:.66rem;letter-spacing:.2em
}
.grimoire-path-card h3{font-size:2rem;margin:14px 0 12px}
.grimoire-path-card p{color:var(--muted);line-height:1.75;font-size:.88rem}
.grimoire-path-card small{
  display:inline-block;margin-top:18px;color:#7f7467;font-size:.62rem;letter-spacing:.15em
}
.grimoire-closing{
  padding:140px 8vw;text-align:center;background:
    radial-gradient(circle at center,rgba(103,72,131,.16),transparent 38%),#08080a;
  border-top:1px solid rgba(198,168,120,.10)
}
.grimoire-closing-inner{max-width:900px;margin:auto}
.grimoire-closing-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:35px}

@media(max-width:980px){
  .grimoire-feature-grid{grid-template-columns:1fr}
  .grimoire-feature-card{min-height:auto}
  .grimoire-path-grid{grid-template-columns:1fr 1fr}
  .grimoire-path-card:nth-child(2){border-right:0}
  .grimoire-path-card:nth-child(-n+2){border-bottom:1px solid var(--border)}
}
@media(max-width:680px){
  .grimoire-hero{padding:125px 6vw 80px;min-height:84svh}
  .grimoire-hero h1{font-size:clamp(3.5rem,17vw,5.5rem)}
  .grimoire-intro,.grimoire-library,.grimoire-paths,.grimoire-closing{
    padding-left:6vw;padding-right:6vw
  }
  .grimoire-path-grid{grid-template-columns:1fr}
  .grimoire-path-card{border-right:0;border-bottom:1px solid var(--border)}
  .grimoire-path-card:last-child{border-bottom:0}
  .grimoire-actions .btn,.grimoire-closing-actions .btn{width:100%;text-align:center}
}


/* v019 audit fixes */
.lang:disabled{opacity:.35;cursor:not-allowed;color:#756d64}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid var(--gold);outline-offset:4px}
.main-nav a[aria-current="page"]{color:#fff4df}


/* v021 · Global title scale tuning
   Large editorial headings reduced slightly for better balance,
   especially on Italian pages where lines are naturally longer. */

.hero h1,
.custom-hero h1,
.about-hero h1,
.grimoire-hero h1 {
  font-size: clamp(3.9rem, 7vw, 7.1rem) !important;
}

.section-heading h2,
.story-copy h2,
.custom-intro h2,
.custom-cta h2,
.about-story-copy h2,
.about-name-card h2,
.about-sardinia h2,
.about-passion h2,
.grimoire-intro h2,
.grimoire-closing h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.8rem) !important;
}

/* Article hero titles */
.article-hero h1,
.grimoire-entry-hero h1,
.entry-hero h1,
article h1 {
  font-size: clamp(3.4rem, 5.6vw, 5.9rem) !important;
  line-height: .95 !important;
}

/* Keep cards and content headings expressive but less oversized */
.path-card h3,
.grimoire-feature-card h3,
.grimoire-path-card h3,
.article-card h3,
.custom-step h3,
.about-process-step h3 {
  font-size: clamp(1.75rem, 2vw, 2.25rem) !important;
}

/* Italian needs a touch more restraint because strings are longer */
html[lang="it"] .hero h1,
html[lang="it"] .custom-hero h1,
html[lang="it"] .about-hero h1,
html[lang="it"] .grimoire-hero h1,
html[lang="it"] .article-hero h1,
html[lang="it"] .grimoire-entry-hero h1,
html[lang="it"] .entry-hero h1,
html[lang="it"] article h1 {
  font-size: clamp(3.25rem, 5.1vw, 5.45rem) !important;
  line-height: .96 !important;
}

@media (max-width: 680px) {
  .hero h1,
  .custom-hero h1,
  .about-hero h1,
  .grimoire-hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem) !important;
  }

  .article-hero h1,
  .grimoire-entry-hero h1,
  .entry-hero h1,
  article h1 {
    font-size: clamp(2.9rem, 12vw, 4.2rem) !important;
  }
}
